/* admission/admission.css — Quick Art Photography Academy Offline Admission Styling */

:root {
  --adm-bg: #090b10;
  --adm-card-bg: #ffffff;
  --adm-text: #0f172a;
  --adm-muted: #64748b;
  --adm-gold: #d97706;
  --adm-gold-light: #f59e0b;
  --adm-gold-dark: #b45309;
  --adm-border: #e2e8f0;
  --adm-radius: 18px;
}

body.adm-body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0b0d14;
  color: #1e293b;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.adm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.adm-hero {
  position: relative;
  padding: 130px 0 60px;
  background: radial-gradient(circle at 50% 20%, rgba(217, 119, 6, 0.15) 0%, rgba(11, 13, 20, 1) 75%);
  text-align: center;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.adm-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(245, 158, 11, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.7;
  pointer-events: none;
}

.adm-hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 18px;
}

.adm-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: admPulse 1.8s infinite;
}

@keyframes admPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.adm-hero-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fcd34d;
}

.adm-hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 14px 0;
}

.adm-gold-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adm-hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 740px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.adm-pills-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.adm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #f1f5f9;
  backdrop-filter: blur(8px);
}

.adm-pill-icon {
  font-size: 15px;
}

/* ==========================================================================
   Main Form & ID Card Grid
   ========================================================================== */
.adm-form-section {
  padding: 50px 0 90px;
  background: #f8fafc;
}

.adm-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* Form Card */
.adm-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  padding: 36px 38px;
}

.adm-card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
}

.adm-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #f1f5f9;
}

.adm-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #b45309;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.adm-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 850;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0 0 6px 0;
}

.adm-form-desc {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
}

.adm-fee-badge {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(217, 119, 6, 0.18) 100%);
  border: 1.5px solid rgba(217, 119, 6, 0.35);
  border-radius: 12px;
  padding: 8px 14px;
  text-align: right;
  flex-shrink: 0;
}

.adm-fee-label {
  display: block;
  font-size: 9.5px;
  font-weight: 800;
  color: #92400e;
  letter-spacing: 0.08em;
}

.adm-fee-val {
  font-size: 20px;
  font-weight: 900;
  color: #b45309;
}

/* Form Blocks / Sections */
.adm-form-block {
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid #f1f5f9;
}

.adm-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.adm-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fef3c7;
  color: #92400e;
  border: 1.5px solid #fde68a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: 14px;
  flex-shrink: 0;
}

.adm-block-title h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.adm-block-title small {
  font-size: 12px;
  color: #64748b;
}

/* Photo Upload Row */
.adm-photo-upload-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 14px;
  padding: 14px 18px;
}

.adm-photo-preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
  flex-shrink: 0;
  position: relative;
  background: #e2e8f0;
}

.adm-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adm-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.adm-photo-preview:hover .adm-photo-overlay {
  opacity: 1;
}

.adm-photo-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.adm-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 9px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
  width: fit-content;
}

.adm-upload-btn:hover {
  border-color: #f59e0b;
  color: #b45309;
}

.adm-upload-btn input[type="file"] {
  display: none;
}

.adm-field-hint {
  font-size: 11.5px;
  color: #64748b;
}

/* Rows & Fields */
.adm-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.adm-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.adm-row-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 12px;
}

.adm-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.adm-field label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.01em;
}

.adm-req {
  color: #d97706;
  font-weight: 800;
}

.adm-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.adm-field select,
.adm-field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 0 13px;
  height: 42px;
  outline: none;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.adm-field select {
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  cursor: pointer;
}

.adm-field textarea {
  height: auto;
  min-height: 52px;
  padding: 10px 13px;
  resize: vertical;
}

.adm-field input:focus,
.adm-field select:focus,
.adm-field textarea:focus {
  border-color: #f59e0b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

/* Phone input group */
.adm-phone-input {
  display: flex;
  align-items: stretch;
  height: 42px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  overflow: hidden;
  transition: all 0.2s ease;
}

.adm-phone-input:focus-within {
  border-color: #f59e0b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

.adm-phone-prefix {
  height: 100%;
  padding: 0 11px;
  background: #edf2f7;
  border-right: 1.5px solid #cbd5e1;
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adm-phone-input input {
  height: 100% !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 12px !important;
}

/* File Box */
.adm-file-box {
  position: relative;
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.adm-file-box:hover {
  border-color: #f59e0b;
}

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

.adm-file-info {
  display: flex;
  align-items: center;
  gap: 9px;
  pointer-events: none;
}

.adm-file-icon {
  font-size: 18px;
}

.adm-file-text {
  font-size: 12px;
  color: #475569;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Payment Block */
.adm-payment-block {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.adm-fee-summary-card {
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 18px;
}

.adm-fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: #854d0e;
  margin-bottom: 4px;
}

.adm-fee-row strong {
  font-size: 18px;
  color: #b45309;
}

.adm-fee-muted {
  font-size: 12px;
  font-weight: 500;
  color: #a16207;
  margin-bottom: 0;
}

.adm-pay-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.adm-pay-choice {
  cursor: pointer;
  position: relative;
}

.adm-pay-choice input[type="radio"] {
  position: absolute;
  top: 14px;
  left: 14px;
  accent-color: #d97706;
}

.adm-choice-box {
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px 16px 14px 38px;
  background: #ffffff;
  transition: all 0.2s ease;
  height: 100%;
  box-sizing: border-box;
}

.adm-pay-choice input[type="radio"]:checked + .adm-choice-box {
  border-color: #f59e0b;
  background: #fffbeb;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
}

.adm-choice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.adm-choice-header strong {
  font-size: 13.5px;
  color: #0f172a;
}

.adm-badge-instant {
  font-size: 9px;
  font-weight: 850;
  color: #15803d;
  background: #dcfce7;
  padding: 2px 6px;
  border-radius: 4px;
}

.adm-choice-box p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.adm-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
  margin-bottom: 20px;
  cursor: pointer;
}

.adm-consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #d97706;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Submit Button */
.adm-submit-btn {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px -4px rgba(217, 119, 6, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.adm-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -4px rgba(217, 119, 6, 0.6);
  filter: brightness(1.05);
}

.adm-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.adm-status-box {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.4;
}
.adm-status-box.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.adm-status-box.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* ==========================================================================
   Right Column: Live Student ID Badge
   ========================================================================== */
.adm-side-col {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.adm-id-card {
  background: linear-gradient(145deg, #181d2a 0%, #0d1017 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.adm-id-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.adm-id-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.adm-id-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.adm-id-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.adm-id-academy-name {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  color: #fbbf24;
}

.adm-id-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.adm-id-chip {
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: 0.08em;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 3px 8px;
  border-radius: 6px;
}

.adm-id-body {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.adm-id-photo-frame {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(245, 158, 11, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  background: #1e293b;
}

.adm-id-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adm-id-details h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 3px 0;
}

.adm-id-role {
  font-size: 11.5px;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 5px;
}

.adm-id-studio,
.adm-id-city {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.adm-id-studio span,
.adm-id-city span {
  color: #ffffff;
  font-weight: 600;
}

.adm-id-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.adm-id-lbl {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.adm-id-footer strong {
  color: #fcd34d;
  font-weight: 800;
  font-size: 11.5px;
}

/* Side Box Info */
.adm-side-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.05);
}

.adm-side-box h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.adm-steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.adm-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.adm-check-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.adm-steps-list strong {
  font-size: 13px;
  color: #0f172a;
  display: block;
  margin-bottom: 2px;
}

.adm-steps-list p {
  font-size: 11.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.adm-helpline {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}

.adm-call-link {
  display: block;
  margin-top: 4px;
  color: #b45309;
  font-weight: 800;
  font-size: 13.5px;
  text-decoration: none;
}

/* ==========================================================================
   Success Modal
   ========================================================================== */
.adm-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.adm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 20, 0.85);
  backdrop-filter: blur(8px);
}

.adm-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: admModalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes admModalIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.adm-modal-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.adm-modal-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 850;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.adm-modal-sub {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 20px 0;
}

.adm-modal-slip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 24px;
}

.adm-slip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
}

.adm-slip-row:last-child {
  border-bottom: none;
}

.adm-slip-row span {
  color: #64748b;
}

.adm-slip-row strong {
  color: #0f172a;
  font-weight: 800;
}

.adm-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.adm-modal-btn {
  height: 48px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  transition: all 0.2s;
}

.adm-modal-portal {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px -3px rgba(217, 119, 6, 0.4);
}

.adm-modal-portal:hover {
  filter: brightness(1.06);
}

.adm-modal-close {
  background: #f1f5f9;
  color: #475569;
}

.adm-modal-close:hover {
  background: #e2e8f0;
}

/* ==========================================================================
   Issued Professional Student ID Card (Modal & Download)
   ========================================================================== */
.adm-modal-id-container {
  background: linear-gradient(180deg, #101522 0%, #080a0f 100%) !important;
  border: 1.5px solid rgba(245, 158, 11, 0.45) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 50px rgba(245, 158, 11, 0.15) !important;
  max-width: 860px !important;
  padding: 28px 24px 24px !important;
  color: #ffffff !important;
}

.adm-modal-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.adm-modal-title {
  color: #ffffff !important;
  font-size: 22px !important;
  margin: 0 0 6px !important;
}

.adm-issued-card-wrapper {
  margin: 18px auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  width: 100%;
}

.adm-card-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.adm-card-side-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.08em;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Authentic Standard CR80 PVC Institutional Identity Badge */
.adm-issued-id-card {
  width: 360px;
  height: 570px;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
              linear-gradient(180deg, #131722 0%, #0a0c13 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(245, 158, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 16px 20px 14px;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
  flex-shrink: 0;
}

/* Real PVC Plastic Card Sheen */
.adm-card-sheen {
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  height: 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 1;
}

/* Authentic Lanyard Hole Slot */
.adm-card-lanyard-slot {
  width: 48px;
  height: 8px;
  background: #05070a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  margin: 0 auto 10px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

/* Card Header */
.adm-card-header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1.5px solid rgba(245, 158, 11, 0.35);
  padding-bottom: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  text-align: left;
}

/* Clean Logo - NO BOX! Completely transparent & crisp */
.adm-card-clean-logo,
.adm-card-logo {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.adm-card-inst-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 850;
  color: #fbbf24;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.adm-card-inst-sub {
  font-size: 8.5px;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: 0.08em;
}

.adm-card-inst-iso {
  font-size: 7.5px;
  color: #94a3b8;
}

/* Student Photo Frame with Ribbon */
.adm-card-photo-wrapper {
  position: relative;
  width: 105px;
  height: 125px;
  margin: 0 auto 10px;
  border-radius: 14px;
  padding: 3px;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.adm-card-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
  display: block;
}

.adm-card-photo-ribbon {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #042f2c;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1.5px solid #064e3b;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  white-space: nowrap;
}

/* Student Name & Course */
.adm-card-student-name {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 850;
  color: #ffffff;
  margin: 10px 0 3px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adm-card-course-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 3px 12px;
  border-radius: 999px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}

/* Tabular Details Grid */
.adm-card-table-grid {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 12px;
  text-align: left;
  font-size: 10.5px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 10px;
}

.adm-card-table-row span {
  color: #94a3b8;
  font-size: 8.5px;
  font-weight: 600;
  display: block;
}

.adm-card-table-row strong {
  color: #ffffff;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* Bottom Bar: QR Code, Hologram, Signature */
.adm-card-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  margin-top: auto;
  position: relative;
  z-index: 2;
  text-align: left;
}

.adm-card-qr-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.adm-card-qr-img {
  width: 58px;
  height: 58px;
  background: #ffffff;
  padding: 2px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  flex-shrink: 0;
  display: block;
}

.adm-card-qr-badge {
  font-size: 8.5px;
  color: #fbbf24;
  font-weight: 800;
  line-height: 1.2;
}

.adm-card-qr-hint {
  font-size: 7px;
  color: #94a3b8;
}

/* Genuine Gold Rainbow Hologram Security Seal */
.adm-card-hologram {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #f59e0b, #fbbf24, #10b981, #3b82f6, #ec4899, #f59e0b);
  padding: 1.5px;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adm-card-hologram-inner {
  width: 100%;
  height: 100%;
  background: #0c0f17;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 6px;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
  text-align: center;
}

/* Signatory Block */
.adm-card-signatory {
  text-align: right;
}

.adm-card-sign-cursive {
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  font-size: 19px;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 2px;
}

.adm-card-sign-lead {
  font-size: 7.5px;
  color: #cbd5e1;
  font-weight: 700;
}

.adm-card-sign-session {
  font-size: 7px;
  color: #64748b;
}

/* Security Watermark Background */
.adm-card-security-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 250px;
  height: 250px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 1;
}

.adm-card-security-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(300%);
}

/* ==========================================================================
   BACK SIDE SPECIFIC STYLING
   ========================================================================== */
.adm-issued-id-card.adm-card-back-side {
  text-align: left;
  padding: 16px 20px 14px;
}

.adm-card-back-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(245, 158, 11, 0.35);
  padding-bottom: 8px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.adm-card-back-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.adm-card-back-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.adm-card-back-head-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 850;
  color: #fbbf24;
  display: block;
  letter-spacing: 0.04em;
}

.adm-card-back-head-text span {
  font-size: 7.5px;
  color: #94a3b8;
  display: block;
}

.adm-card-active-pill {
  font-size: 8px;
  color: #10b981;
  font-weight: 850;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* Guidelines / Terms Container */
.adm-card-rules-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.adm-card-rules-heading {
  font-size: 9.5px;
  font-weight: 850;
  color: #fbbf24;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}

.adm-card-rules-list {
  margin: 0;
  padding: 0 0 0 14px;
  font-size: 8.5px;
  color: #cbd5e1;
  line-height: 1.45;
}

.adm-card-rules-list li {
  margin-bottom: 4px;
}

/* Emergency Contact Row */
.adm-card-emergency-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  font-size: 8.5px;
}

.adm-card-emergency-row span {
  color: #94a3b8;
  display: block;
  font-size: 7.5px;
}

.adm-card-emergency-row strong {
  color: #fbbf24;
  font-size: 9.5px;
}

/* Campus Address & Contacts Container */
.adm-card-campus-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.adm-card-campus-heading {
  font-size: 9.5px;
  font-weight: 850;
  color: #38bdf8;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}

.adm-card-campus-detail {
  font-size: 8.5px;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 4px;
}

.adm-card-campus-detail strong {
  color: #ffffff;
}

/* Barcode & Return Instructions */
.adm-card-barcode-area {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 8px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.adm-card-barcode-graphic {
  font-family: monospace, cursive;
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 5px;
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 900;
}

.adm-card-return-notice {
  font-size: 7px;
  color: #64748b;
  line-height: 1.25;
  margin: 0;
}

.adm-id-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.adm-btn-download {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0d14;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 850;
  border-radius: 12px;
  padding: 13px 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adm-btn-download:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.adm-btn-print {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 750;
  border-radius: 12px;
  padding: 13px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adm-btn-print:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(245, 158, 11, 0.5);
}

.adm-btn-portal {
  grid-column: 1 / -1;
  background: #1e293b;
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  border-radius: 12px;
  padding: 13px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.adm-btn-portal:hover {
  background: rgba(245, 158, 11, 0.15);
}

.adm-btn-dismiss {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px;
}

.adm-btn-dismiss:hover {
  color: #ffffff;
}

/* Print Styles: isolates ID Card cleanly for printing */
@media print {
  body * {
    visibility: hidden;
  }
  #issued-id-card-to-download, #issued-id-card-to-download * {
    visibility: visible;
  }
  #issued-id-card-to-download {
    position: absolute;
    left: 0;
    top: 0;
    width: 380px !important;
    background: #0f1420 !important;
    color: #ffffff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .adm-grid {
    grid-template-columns: 1fr;
  }
  .adm-side-col {
    position: static;
  }
}

@media (max-width: 768px) {
  .adm-hero {
    padding: 110px 0 40px;
  }
  .adm-form-card {
    padding: 24px 20px;
  }
  .adm-form-header {
    flex-direction: column;
  }
  .adm-fee-badge {
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }
  .adm-row-2,
  .adm-row-3,
  .adm-row-split,
  .adm-pay-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
