/* ============================================
   NITIPATH SEVA SOLUTIONS - Core Stylesheet
   Mobile-First | Solid Colors | Trust Theme
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e2b714;
  --accent-light: #f0d060;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --mid-gray: #6c757d;
  --dark-gray: #343a40;
  --text: #212529;
  --text-light: #495057;
  --success: #00875a;
  --danger: #dc3545;
  --info: #0066cc;

  /* Page-specific theme colors */
  --jobs-primary: #0052cc;
  --jobs-secondary: #deebff;
  --sports-primary: #00875a;
  --sports-secondary: #e3fcef;
  --acting-primary: #8b1a1a;
  --acting-secondary: #ffeef0;
  --docs-primary: #008080;
  --docs-secondary: #e0f7f7;
  --skill-primary: #6c3082;
  --skill-secondary: #f3e8ff;
  --tech-primary: #00838f;
  --tech-secondary: #e0f7fa;
  --counsel-primary: #d35400;
  --counsel-secondary: #fff5e6;
  --freelance-primary: #3f51b5;
  --freelance-secondary: #e8eaf6;

  /* Typography */
  --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button { cursor: pointer; }

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary);
  transition: all var(--transition-normal);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: var(--shadow-lg);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.navbar-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--primary);
  padding: var(--space-md);
  gap: 0;
  box-shadow: var(--shadow-lg);
  max-height: 70vh;
  overflow-y: auto;
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(226, 183, 20, 0.1);
}

.nav-auth {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
}

.nav-auth .btn-outline {
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.nav-auth .btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
}

.nav-auth .btn-filled {
  background: var(--accent);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.nav-auth .btn-filled:hover {
  background: var(--accent-light);
}

.nav-user-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
}

.nav-user-info .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.nav-user-info .user-name {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 183, 20, 0.3);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--light-gray);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Hero Sections --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.hero-home {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(226, 183, 20, 0.15);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(226, 183, 20, 0.3);
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero-title .highlight {
  color: var(--accent);
}

.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 2px;
}

/* --- Floating Shapes (Background) --- */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: -100px;
  right: -100px;
  animation: float-slow 15s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  bottom: -50px;
  left: -50px;
  animation: float-slow 12s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--white);
  top: 40%;
  right: 10%;
  animation: float-slow 18s ease-in-out infinite;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .hero-title {
  font-size: 2rem;
}

/* Page-specific hero colors */
.hero-jobs { background: linear-gradient(135deg, var(--jobs-primary) 0%, #003d99 100%); color: #fff; }
.hero-sports { background: linear-gradient(135deg, var(--sports-primary) 0%, #005c3d 100%); color: #fff; }
.hero-acting { background: linear-gradient(135deg, var(--acting-primary) 0%, #5c1010 100%); color: #fff; }
.hero-docs { background: linear-gradient(135deg, var(--docs-primary) 0%, #005555 100%); color: #fff; }
.hero-skill { background: linear-gradient(135deg, var(--skill-primary) 0%, #4a1d5e 100%); color: #fff; }
.hero-tech { background: linear-gradient(135deg, var(--tech-primary) 0%, #005662 100%); color: #fff; }
.hero-counsel { background: linear-gradient(135deg, var(--counsel-primary) 0%, #a04000 100%); color: #fff; }
.hero-freelance { background: linear-gradient(135deg, var(--freelance-primary) 0%, #283593 100%); color: #fff; }

/* --- Grid Systems --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* --- Services Grid (Home) --- */
.services-section {
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid var(--light-gray);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: height var(--transition-normal);
}

.service-card:hover::before {
  height: 6px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card .card-icon {
  margin: 0 auto var(--space-md);
}

.service-card-jobs::before { background: var(--jobs-primary); }
.service-card-jobs .card-icon { background: var(--jobs-secondary); color: var(--jobs-primary); }
.service-card-sports::before { background: var(--sports-primary); }
.service-card-sports .card-icon { background: var(--sports-secondary); color: var(--sports-primary); }
.service-card-acting::before { background: var(--acting-primary); }
.service-card-acting .card-icon { background: var(--acting-secondary); color: var(--acting-primary); }
.service-card-docs::before { background: var(--docs-primary); }
.service-card-docs .card-icon { background: var(--docs-secondary); color: var(--docs-primary); }
.service-card-skill::before { background: var(--skill-primary); }
.service-card-skill .card-icon { background: var(--skill-secondary); color: var(--skill-primary); }
.service-card-tech::before { background: var(--tech-primary); }
.service-card-tech .card-icon { background: var(--tech-secondary); color: var(--tech-primary); }
.service-card-counsel::before { background: var(--counsel-primary); }
.service-card-counsel .card-icon { background: var(--counsel-secondary); color: var(--counsel-primary); }
.service-card-freelance::before { background: var(--freelance-primary); }
.service-card-freelance .card-icon { background: var(--freelance-secondary); color: var(--freelance-primary); }

/* --- Feature Split Sections --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.split-visual .visual-icon {
  font-size: 4rem;
  opacity: 0.9;
}

.split-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.split-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.split-text ul {
  margin-bottom: var(--space-lg);
}

.split-text ul li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.split-text ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* --- Testimonials --- */
.testimonials-section {
  background: var(--primary);
  color: var(--white);
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--accent);
  color: var(--primary);
  text-align: center;
}

.cta-section .section-title {
  color: var(--primary);
}

.cta-section .section-subtitle {
  color: rgba(26, 26, 46, 0.7);
  margin-left: auto;
  margin-right: auto;
}

/* --- Forms --- */
.form-section {
  background: var(--off-white);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.form-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.form-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(226, 183, 20, 0.15);
}

.form-control::placeholder {
  color: var(--mid-gray);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-message {
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  display: none;
}

.form-message.success {
  background: #e3fcef;
  color: #00875a;
  border: 1px solid #00875a;
  display: block;
}

.form-message.error {
  background: #ffeef0;
  color: #dc3545;
  border: 1px solid #dc3545;
  display: block;
}

/* --- Auth Forms --- */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px var(--space-md) var(--space-xl);
}

.auth-container {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
}

.auth-toggle {
  display: flex;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: var(--space-xl);
}

.auth-toggle button {
  flex: 1;
  padding: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  color: var(--text-light);
}

.auth-toggle button.active {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.auth-form { display: none; }
.auth-form.active { display: block; }

.auth-divider {
  text-align: center;
  margin: var(--space-lg) 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--light-gray);
}

.auth-divider span {
  background: var(--white);
  padding: 0 var(--space-md);
  color: var(--mid-gray);
  font-size: 0.85rem;
  position: relative;
}

/* --- Profile / Dashboard --- */
.dashboard-page {
  padding-top: 80px;
  min-height: 100vh;
  background: var(--off-white);
}

.dashboard-header {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
}

.dashboard-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.dashboard-header p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.dash-stat-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.dash-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.dash-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.applications-list {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  overflow: hidden;
}

.applications-list h3 {
  padding: var(--space-lg);
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--light-gray);
}

.application-item {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.application-item:last-child {
  border-bottom: none;
}

.app-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.app-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.app-status {
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-approved {
  background: #e3fcef;
  color: #00875a;
}

.status-review {
  background: #deebff;
  color: #0052cc;
}

.empty-state {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--text-light);
}

.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

.empty-state p {
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .navbar-logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  padding: 4px 0;
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* --- Scroll to Top Button --- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --- Toast Notifications --- */
.toast-container {
  position: fixed;
  top: 80px;
  right: 16px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s ease;
  max-width: 340px;
}

.toast-success {
  background: var(--success);
  color: var(--white);
}

.toast-error {
  background: var(--danger);
  color: var(--white);
}

.toast-info {
  background: var(--info);
  color: var(--white);
}

/* --- Loading Overlay --- */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.9);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-md);
}

.loading-overlay.active {
  display: flex;
}

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(226, 183, 20, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-overlay p {
  color: var(--white);
  font-size: 0.9rem;
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  animation: scaleIn 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.modal-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--light-gray);
}

/* --- Fun Elements --- */
.fun-counter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(226, 183, 20, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fun-counter:hover {
  background: rgba(226, 183, 20, 0.2);
  transform: scale(1.05);
}

.marquee-wrapper {
  overflow: hidden;
  background: var(--primary);
  padding: 10px 0;
}

.marquee-content {
  display: flex;
  gap: var(--space-2xl);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* --- Listings --- */
.listing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-normal);
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.listing-header {
  padding: var(--space-lg);
  color: var(--white);
}

.listing-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  margin-bottom: var(--space-sm);
}

.listing-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.listing-body {
  padding: var(--space-lg);
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.meta-item {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-description {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* --- Process Steps --- */
.process-steps {
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- FAQ Accordion --- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--light-gray);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question .faq-icon {
  transition: transform var(--transition-normal);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Tags / Chips --- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  margin: 2px;
}

.tag-primary { background: rgba(226, 183, 20, 0.15); color: #b8960e; }
.tag-blue { background: var(--jobs-secondary); color: var(--jobs-primary); }
.tag-green { background: var(--sports-secondary); color: var(--sports-primary); }
.tag-red { background: var(--acting-secondary); color: var(--acting-primary); }
.tag-teal { background: var(--docs-secondary); color: var(--docs-primary); }
.tag-purple { background: var(--skill-secondary); color: var(--skill-primary); }

/* --- Confetti Canvas --- */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
}

/* --- Animated Number Counter --- */
.count-up {
  display: inline-block;
}

/* --- Particles / Fun background --- */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.15;
}

/* --- Typing effect text --- */
.typing-text::after {
  content: '|';
  animation: blink 1s step-end infinite;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .dashboard-stats { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.5rem; }
}

/* Desktop */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    background: none;
    padding: 0;
    box-shadow: none;
    gap: 0;
    max-height: none;
    overflow: visible;
  }

  .nav-links a {
    border-bottom: none;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
  }

  .hamburger { display: none; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .split-section { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .hero-title { font-size: 3rem; }
  .page-hero .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }

  .container { padding: 0 var(--space-xl); }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .hero-title { font-size: 3.5rem; }
}

/* --- Keyframe Animations --- */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* --- Password Toggle --- */
.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--mid-gray);
  user-select: none;
  padding: 4px;
}

.password-toggle:hover {
  color: var(--text);
}

/* --- Micro-interactions --- */
.hover-lift {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(226, 183, 20, 0.3);
}

/* --- Print Styles --- */
@media print {
  .navbar, .footer, .scroll-top, .toast-container { display: none; }
  .hero { min-height: auto; padding: var(--space-xl) 0; }
  body { font-size: 12pt; }
}
