/* ─────────────────────────────────────────────────────────────
   ICAR - CIBA Recruitment Portal Stylesheet
   Design System: Indigo / Sky / Slate Premium Theme
   ───────────────────────────────────────────────────────────── */

:root {
  --navy: #1e1b4b;       /* Indigo Dye / Deep Navy */
  --navy-light: #312e81; /* Deep Purple Indigo */
  --teal: #0891b2;       /* Vibrant Cyan-Teal */
  --teal-light: #ecfeff; /* Soft Teal background */
  --gold: #d97706;       /* Warm Amber */
  --gold-light: #fffbeb; /* Soft Amber background */
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #0f172a;   /* Slate 900 */
  --red: #ef4444;        /* Soft modern red */
  --green: #10b981;      /* Emerald green */
  
  /* Shadow Elevation System */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 25px -5px rgba(30, 27, 75, 0.04), 0 10px 10px -5px rgba(30, 27, 75, 0.04);
  --shadow-card-hover: 0 25px 50px -12px rgba(30, 27, 75, 0.1);
  
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base Setup ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, h1, h2, h3, h4, h5, h6, .section-title, .project-info-sub, .field label, input, select, textarea, button {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

body {
  background-color: #f8fafc;
  background-image: 
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.03) 0, transparent 50%), 
    radial-gradient(at 50% 0%, rgba(6, 182, 212, 0.03) 0, transparent 50%), 
    radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.03) 0, transparent 50%);
  min-height: 100vh;
  color: var(--gray-800);
  padding: 40px 16px 80px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  max-width: 880px;
  margin: 0 auto;
}

/* ── Header ── */
/* ── CIBA Letterhead ── */
.ciba-letterhead {
  background-color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--gray-200);
  border-bottom: 3px double #16a34a; /* Double green border matching standard gov letterheads */
  position: relative;
}

.letterhead-logo-section {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.letterhead-logo {
  height: 85px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.letterhead-text-section {
  flex-grow: 1;
  text-align: left;
}

.lh-hindi-title {
  color: #15803d; /* Dev-Hindi Green */
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.2px;
}

.lh-english-title {
  color: #1e3a8a; /* Deep Navy English */
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 1px;
  letter-spacing: 0.1px;
}

.lh-iso {
  color: #475569;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 6px;
}

.lh-hindi-sub {
  color: #15803d;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 2px;
}

.lh-english-sub {
  color: #475569;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.2;
}

/* ── Page Title Banner ── */
.page-title-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  gap: 16px;
}

.page-title-banner h2 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-title-banner .sub-badge {
  background: rgba(8, 145, 178, 0.2);
  color: #22d3ee;
  border: 1px solid rgba(8, 145, 178, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .ciba-letterhead {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
  .letterhead-text-section {
    text-align: center;
  }
  .letterhead-logo {
    height: 75px;
  }
  .lh-hindi-title {
    font-size: 13.5px;
  }
  .lh-english-title {
    font-size: 14px;
  }
  .page-title-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }
}

/* ── Application Code Banner ── */
.app-code-banner {
  background: linear-gradient(90deg, var(--gold-light) 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  border-top: none;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  font-size: 14px;
}

.app-code-banner .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.app-code-banner .code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1.5px;
  background: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  box-shadow: var(--shadow-sm);
}

.app-code-banner .hint {
  font-size: 12px;
  color: var(--gray-600);
  font-style: italic;
}

/* ── Form Card ── */
.form-card {
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid var(--gray-200);
  border-top: none;
  box-shadow: var(--shadow-premium);
  padding: 48px;
  transition: var(--transition);
}

/* ── Section ── */
.section {
  margin-bottom: 44px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
  letter-spacing: -0.02em;
}

.section-num {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
}

/* ── Grid ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.col-span-2 {
  grid-column: span 2;
}

/* ── Fields ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.field label .req {
  color: var(--red);
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
  background: var(--white);
}

.field select:disabled {
  background-color: var(--gray-100);
  color: var(--gray-600);
  cursor: not-allowed;
  border-color: var(--gray-200);
  box-shadow: none;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field textarea.large {
  min-height: 180px;
}

.field .hint {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ── Radio Group ── */
.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #4f46e5;
  cursor: pointer;
}

/* ── Academic Table ── */
.academic-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.academic-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.academic-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.academic-table tr:last-child td {
  border-bottom: none;
}

.academic-table tr:nth-child(even) td {
  background: var(--off-white);
}

.academic-table td input,
.academic-table td select {
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13.5px;
  font-family: inherit;
  width: 100%;
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.academic-table td input:focus,
.academic-table td select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

/* ── Dynamic List ── */
.dynamic-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dynamic-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dynamic-item input {
  flex: 1;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: var(--off-white);
  transition: var(--transition);
}

.dynamic-item input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
  background: var(--white);
}

/* ── Buttons ── */
.btn-remove {
  background: #fee2e2;
  color: var(--red);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.btn-remove:hover {
  background: #fecaca;
  transform: scale(1.05);
}

.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal);
  border: 1.5px dashed var(--teal);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: var(--transition);
  font-family: inherit;
}

.btn-add:hover {
  background: #cffafe;
  border-color: #06b6d4;
  color: #06b6d4;
}

/* ── Upload Box ── */
.upload-box {
  border: 2px dashed var(--gray-300);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  background: var(--off-white);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.upload-box:hover {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.02);
}

.upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-box .upload-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.upload-box .upload-label {
  font-size: 14px;
  font-weight: 700;
  color: #4f46e5;
}

.upload-box .upload-hint {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 4px;
}

.upload-box .file-name {
  font-size: 13.5px;
  color: var(--green);
  font-weight: 700;
  margin-top: 8px;
  display: none;
}

/* ── Declaration ── */
.declaration-box {
  background: var(--gray-100);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.declaration-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.declaration-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #4f46e5;
  cursor: pointer;
  flex-shrink: 0;
}

.declaration-check span {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* ── Submit Area ── */
.submit-area {
  text-align: center;
  margin-top: 36px;
}

.btn-submit {
  background: linear-gradient(135deg, #4f46e5 0%, #312e81 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 16px 56px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.5);
}

.btn-submit:disabled {
  background: var(--gray-400);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

.btn-submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px -10px rgba(79, 70, 229, 0.6);
  background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
}

/* ── Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

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

.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.modal .tick {
  font-size: 60px;
  margin-bottom: 16px;
}

.modal h2 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal p {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 20px;
}

.modal .code-display {
  background: linear-gradient(90deg, var(--gold-light) 0%, #fef3c7 100%);
  border: 1.5px solid #fcd34d;
  border-radius: 10px;
  padding: 16px 24px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.btn-download {
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-bottom: 12px;
}

.btn-download:hover {
  background: #0891b2;
  transform: translateY(-1px);
}

.btn-new {
  background: transparent;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 11px 32px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-new:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--gray-100);
}

/* ── Validation ── */
.error-msg {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}

.error-msg.show {
  display: block;
}

/* ── Spinner ── */
.spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─────────────────────────────────────────────────────────────
   Landing Page (index.php) Custom Style Enhancements
   ───────────────────────────────────────────────────────────── */

.portal-container {
  max-width: 1040px;
  margin: 0 auto;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, #4f46e5, #06b6d4);
}

.info-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.steps-list {
  margin-left: 24px;
  margin-top: 12px;
  color: var(--gray-600);
  line-height: 1.7;
}

.steps-list li {
  margin-bottom: 10px;
}

.filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-input {
  padding: 11px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition: var(--transition);
  background: var(--off-white);
  width: 280px;
}

.filter-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
  background: var(--white);
}

.btn-search {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 11px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-search:hover {
  background: #312e81;
  transform: translateY(-1px);
}

.btn-clear {
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  padding: 11px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-clear:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

.radio-btn-group {
  display: flex;
  background: var(--gray-100);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
}

.radio-btn-label {
  padding: 8px 20px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
  user-select: none;
  color: var(--gray-600);
}

.radio-btn-group input[type="radio"] {
  display: none;
}

.radio-btn-group input[type="radio"]:checked + .radio-btn-label {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.notif-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.notif-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--navy);
  transition: var(--transition);
}

.notif-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-300);
}

.notif-card:hover::before {
  background: #6366f1;
}

.notif-info {
  flex: 1;
  min-width: 280px;
}

.notif-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.notif-code {
  background: var(--teal-light);
  color: var(--teal);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgba(8, 145, 178, 0.15);
}

.notif-days-left {
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.days-ok {
  background: #dcfce7;
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.days-warn {
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.days-expired {
  background: #fee2e2;
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.notif-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.notif-deadline {
  font-size: 13.5px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.btn-apply {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  border: none;
  box-shadow: 0 4px 10px rgba(30, 27, 75, 0.15);
}

.btn-apply:hover:not(.btn-disabled) {
  background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.25);
}

.btn-disabled {
  background: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
  box-shadow: none;
}

.no-records {
  text-align: center;
  color: var(--gray-600);
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--gray-200);
  font-size: 16px;
  font-weight: 500;
}

.footer {
  text-align: center;
  margin-top: 60px;
  color: var(--gray-600);
  font-size: 13.5px;
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .form-card        { padding: 32px 24px; }
  .form-header      { padding: 32px 24px; flex-direction: column; text-align: center; gap: 16px; }
  .header-text-container { text-align: center; }
  .app-code-banner  { padding: 12px 24px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .grid-2           { grid-template-columns: 1fr; gap: 16px; }
  .col-span-2       { grid-column: span 1; }
  .filter-bar       { flex-direction: column; align-items: stretch; }
  .filter-input     { width: 100%; }
  .radio-btn-group  { width: 100%; justify-content: space-around; }
  .notif-card       { flex-direction: column; align-items: stretch; gap: 16px; }
  .btn-apply        { width: 100%; }
}

/* ── Project Info Sub ── */
.project-info-sub {
  background: var(--gray-100);
  padding: 16px;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  margin-bottom: 20px;
}
.project-info-sub span.expired {
  color: var(--red);
  font-weight: 700;
}