/* ========== AIRLINES QUICK REFUND - GLOBAL STYLES ========== */
:root {
  --primary: #0d9668;
  --primary-dark: #087a54;
  --primary-light: #e6f7f1;
  --primary-50: #f0fdf8;
  --accent: #059669;
  --dark: #111827;
  --gray-900: #1f2937;
  --gray-800: #374151;
  --gray-700: #4b5563;
  --gray-600: #6b7280;
  --gray-500: #9ca3af;
  --gray-400: #d1d5db;
  --gray-300: #e5e7eb;
  --gray-200: #f3f4f6;
  --gray-100: #f9fafb;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.2s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

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

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-300);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.navbar-links a:hover { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-white:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
}

.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

.btn-icon { padding: 10px; border-radius: 50%; }

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-700);
}

/* ========== HERO ========== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-50) 0%, #dcfce7 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 150, 104, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span { color: var(--primary); }

.hero-content p {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.hero-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-form .form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.mini-form input, .mini-form select {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
}

.mini-form input:focus, .mini-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 150, 104, 0.1);
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
}

.floating-badge.top-right {
  top: -10px;
  right: -20px;
  color: var(--success);
}

.floating-badge.bottom-left {
  bottom: -10px;
  left: -20px;
  color: var(--info);
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-icon.green { background: #d1fae5; }
.badge-icon.blue { background: #dbeafe; }

/* ========== SECTIONS ========== */
section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* How It Works */
.how-it-works { background: var(--gray-100); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Compensation Table */
.compensation-table-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.compensation-table {
  width: 100%;
  border-collapse: collapse;
}

.compensation-table th, .compensation-table td {
  padding: 16px 24px;
  text-align: left;
}

.compensation-table thead {
  background: var(--primary);
  color: var(--white);
}

.compensation-table th {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compensation-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.compensation-table tbody tr:hover { background: var(--primary-50); }

.compensation-table td {
  font-size: 0.95rem;
}

.compensation-amount {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials { background: var(--gray-100); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.testimonial-author .detail {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
}

.faq-question:hover { background: var(--gray-50); }

.faq-question .arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--gray-500);
}

.faq-item.active .faq-question .arrow { transform: rotate(180deg); }

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 300px; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Trust Badges */
.trust-section {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-600);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item .icon {
  font-size: 1.8rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { margin-bottom: 16px; }

.footer-brand .logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

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

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 10px; }

.footer ul a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 20px;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 150, 104, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 2px;
}

/* Autocomplete dropdown */
.autocomplete-wrapper { position: relative; }

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  display: none;
}

.autocomplete-dropdown.active { display: block; }

.autocomplete-option {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.autocomplete-option:hover { background: var(--primary-light); }

.autocomplete-option .code {
  font-weight: 700;
  color: var(--primary);
  margin-right: 8px;
}

/* ========== PAGE LAYOUTS ========== */
.page-header {
  padding: 120px 0 40px;
  background: linear-gradient(135deg, var(--primary-50) 0%, #dcfce7 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
}

.page-content {
  padding: 60px 0;
}

/* ========== CHECK ELIGIBILITY PAGE ========== */
.checker-container {
  max-width: 680px;
  margin: 0 auto;
}

.checker-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--gray-300);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.progress-step .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.progress-step.active .circle,
.progress-step.completed .circle {
  background: var(--primary);
}

.progress-step .label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.progress-step.active .label { color: var(--primary); font-weight: 600; }

.checker-step { display: none; }
.checker-step.active { display: block; }

.checker-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

/* Disruption options */
.disruption-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.disruption-option {
  padding: 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.disruption-option:hover { border-color: var(--primary); }

.disruption-option.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

.disruption-option .icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.disruption-option .title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

/* Result card */
.result-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.result-card.eligible {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 2px solid var(--success);
}

.result-card.not-eligible {
  background: #fef2f2;
  border: 2px solid #fca5a5;
}

.result-card .result-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.result-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.result-card .compensation-amount-large {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 16px 0;
}

.result-card .net-amount {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 24px;
}

/* ========== CLAIM FORM PAGE ========== */
.claim-container {
  max-width: 780px;
  margin: 0 auto;
}

.claim-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  margin-bottom: 24px;
}

.claim-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Document upload */
.upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 16px;
}

.upload-area:hover {
  border-color: var(--primary);
  background: var(--primary-50);
}

.upload-area .upload-icon {
  font-size: 2.5rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.upload-area .upload-text {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.upload-area .upload-hint {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.uploaded-files { display: flex; flex-direction: column; gap: 8px; }

.uploaded-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.uploaded-file .file-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.uploaded-file .remove-file {
  color: var(--danger);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.1rem;
}

/* ========== TRACK PAGE ========== */
.track-container {
  max-width: 680px;
  margin: 0 auto;
}

.track-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.status-timeline {
  position: relative;
  padding-left: 32px;
}

.status-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-300);
}

.timeline-item {
  position: relative;
  padding-bottom: 24px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item .dot {
  position: absolute;
  left: -27px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray-300);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-300);
}

.timeline-item.active .dot {
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item.completed .dot {
  background: var(--success);
  box-shadow: 0 0 0 2px var(--success);
}

.timeline-item .status-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.timeline-item .status-date {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ========== ADMIN PANEL ========== */
.admin-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 72px;
}

.admin-sidebar {
  width: 260px;
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 24px 0;
  position: fixed;
  top: 72px;
  bottom: 0;
  overflow-y: auto;
}

.admin-sidebar-nav {
  list-style: none;
}

.admin-sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.admin-sidebar-nav li a:hover,
.admin-sidebar-nav li a.active {
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

.admin-main {
  flex: 1;
  margin-left: 260px;
  padding: 32px;
  background: var(--gray-100);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.admin-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

/* Stats cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 4px;
}

.stat-card .stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}

.stat-card .stat-change {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 500;
}

/* Admin table */
.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.admin-table-header .search-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-table-header .search-box input {
  padding: 8px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.9rem;
  width: 260px;
  font-family: inherit;
}

.admin-table-header .filter-select {
  padding: 8px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, .admin-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table thead {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.admin-table th {
  font-weight: 600;
  color: var(--gray-600);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: var(--transition);
}

.admin-table tbody tr:hover { background: var(--gray-50); }

/* Status badges */
.status-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.status-badge.new { background: #dbeafe; color: #1d4ed8; }
.status-badge.reviewing { background: #fef3c7; color: #b45309; }
.status-badge.documents_needed { background: #fed7aa; color: #c2410c; }
.status-badge.submitted_to_airline { background: #e0e7ff; color: #4338ca; }
.status-badge.airline_responded { background: #ede9fe; color: #6d28d9; }
.status-badge.legal_action { background: #fce7f3; color: #be185d; }
.status-badge.won { background: #d1fae5; color: #065f46; }
.status-badge.paid { background: #a7f3d0; color: #047857; }
.status-badge.rejected { background: #fee2e2; color: #b91c1c; }
.status-badge.closed { background: var(--gray-200); color: var(--gray-700); }

/* Admin claim detail */
.claim-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.detail-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.detail-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-200);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.detail-row .label {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.detail-row .value {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 16px;
}

.pagination button {
  padding: 8px 14px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.pagination button:hover { background: var(--gray-100); }
.pagination button.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination button:disabled { opacity: 0.5; cursor: not-allowed; }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  display: none;
}

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

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}

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

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
}

.modal-body { padding: 24px; }

/* Login form */
.login-container {
  max-width: 400px;
  margin: 0 auto;
  padding-top: 120px;
}

.login-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  text-align: center;
}

.login-card h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.login-card p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

/* Notes */
.notes-list {
  max-height: 300px;
  overflow-y: auto;
}

.note-item {
  padding: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.note-item .note-meta {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.note-item .note-text {
  font-size: 0.9rem;
  color: var(--gray-700);
}

.add-note-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.add-note-form textarea {
  flex: 1;
  padding: 10px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  resize: none;
  height: 60px;
}

/* Alert */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1 { font-size: 2.5rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .claim-detail-grid { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .mobile-toggle { display: block; }
  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  .hero { padding: 100px 0 60px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .disruption-options { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .compensation-table { font-size: 0.85rem; }
  .compensation-table th, .compensation-table td { padding: 10px 12px; }
}
