/* ============================================
   Auburn Business Network - Stylesheet v5
   ============================================ */

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

:root {
  --navy: #03244d;
  --navy-light: #0a3a6b;
  --orange: #F26522;
  --orange-hover: #d4550f;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --mid-gray: #6c757d;
  --dark-gray: #333333;
  --text: #2d2d2d;
  --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);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.admin-body {
  background: var(--navy);
  color: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); }
h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

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

.section {
  padding: 80px 0;
}

/* --- Navigation --- */
.navbar {
  background: var(--navy);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links .btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  font-weight: 600;
}

.nav-links .btn-nav:hover {
  background: var(--orange-hover);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(rgba(3,36,77,0.8), rgba(3,36,77,0.85)),
              url('../images/samford-hall.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 3rem;
}

.hero h1 .highlight {
  color: var(--orange);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* --- Search Box (Hero) --- */
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  max-width: 650px;
  margin: 0 auto;
}

.search-box select,
.search-box input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  min-width: 0;
}

.search-box select:focus,
.search-box input:focus {
  border-color: var(--orange);
}

.search-box .btn-search {
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.search-box .btn-search:hover {
  background: var(--orange-hover);
}

/* --- Featured Section --- */
.featured-section {
  padding: 80px 0;
  background: var(--white);
}

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

.section-header h2 {
  margin-bottom: 12px;
}

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

/* --- Business Cards Grid --- */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* --- Trading Card Design --- */
.business-card {
  background: linear-gradient(145deg, var(--navy) 0%, #0a3a6b 50%, var(--orange) 100%);
  border-radius: 16px;
  padding: 6px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.business-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(242,101,34,0.4), transparent 40%, rgba(242,101,34,0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.business-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(3,36,77,0.3), 0 0 20px rgba(242,101,34,0.15);
}

.business-card:hover::before {
  opacity: 1;
}

.card-inner {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* Top bar - industry type & WE badge */
.card-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--off-white);
  border-bottom: 2px solid var(--light-gray);
}

.card-type-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
}

.card-we-badge {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(242,101,34,0.4);
}

/* Art area - icon showcase */
.card-art {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 8px 10px;
  border-radius: 8px;
}

.card-art-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 22px);
  pointer-events: none;
}

.card-art-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.2);
}

.card-art-icon svg {
  width: 34px;
  height: 34px;
}

/* Name bar */
.card-name-bar {
  padding: 12px 14px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 2px solid var(--light-gray);
}

.card-name-bar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  flex: 1;
}

.card-verified-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(242,101,34,0.2);
}

/* Description */
.card-desc {
  padding: 4px 14px 10px;
}

.card-desc p {
  color: var(--mid-gray);
  font-size: 0.82rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Stats row */
.card-stats {
  display: flex;
  gap: 6px;
  padding: 0 10px 10px;
}

.card-stat {
  flex: 1;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-stat .stat-icon {
  display: flex;
  color: var(--orange);
}

.card-stat .stat-icon svg {
  width: 14px;
  height: 14px;
}

.card-stat .stat-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bottom bar */
.card-bottom {
  padding: 10px 14px;
  border-top: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--off-white);
}

.card-brand {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mid-gray);
}

.card-contact-actions {
  display: flex;
  gap: 4px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.business-card:hover .card-contact-actions {
  opacity: 1;
  transform: translateX(0);
}

.contact-action {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--mid-gray);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.contact-action svg {
  width: 14px;
  height: 14px;
}

.contact-action:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* --- How It Works --- */
.how-it-works {
  padding: 80px 0;
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-card h3 {
  margin-bottom: 10px;
}

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

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background: var(--orange-hover);
}

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

.btn-secondary:hover {
  background: var(--light-gray);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* --- Directory Page --- */
.directory-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 48px 0 32px;
  color: var(--white);
}

.directory-header h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.directory-header p {
  color: rgba(255,255,255,0.75);
}

.filters-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.filters-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 180px;
}

.filter-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.filter-group select:focus,
.filter-group input:focus {
  border-color: var(--orange);
}

.results-count {
  padding: 20px 0 0;
  color: var(--mid-gray);
  font-size: 0.95rem;
}

.results-count strong {
  color: var(--navy);
}

.directory-results {
  padding: 24px 0 80px;
}

.no-results {
  text-align: center;
  padding: 80px 0;
}

.no-results h3 {
  margin-bottom: 8px;
}

.no-results p {
  color: var(--mid-gray);
}

/* --- Business Detail Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  padding: 32px;
  color: var(--white);
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255,255,255,0.25);
}

.modal-header .modal-initial {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.modal-header .modal-icon {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}

.modal-header .modal-icon svg {
  width: 30px;
  height: 30px;
}

.modal-header h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.modal-header .modal-industry {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.modal-body {
  padding: 32px;
}

.modal-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-info-row svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-info-row .info-label {
  font-size: 0.8rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

.modal-info-row .info-value {
  color: var(--text);
  font-size: 0.95rem;
}

.modal-info-row .info-value a {
  color: var(--orange);
  font-weight: 500;
}

.modal-info-row .info-value a:hover {
  text-decoration: underline;
}

.modal-bio {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--light-gray);
}

.modal-bio h4 {
  margin-bottom: 8px;
}

.modal-bio p {
  color: var(--dark-gray);
  line-height: 1.7;
}

.modal-actions {
  padding: 24px 32px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-actions .btn svg {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

/* --- Apply Page --- */
.apply-page {
  padding: 48px 0 80px;
}

.apply-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 48px 0;
  color: var(--white);
  text-align: center;
}

.apply-header h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.apply-header p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto;
}

.apply-form-wrapper {
  max-width: 640px;
  margin: -32px auto 0;
  position: relative;
  z-index: 1;
  padding: 0 24px 80px;
}

.apply-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.form-section {
  margin-bottom: 32px;
}

.form-section h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.form-group {
  margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group .help-text {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 4px;
}

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

.pricing-note {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 4px solid var(--orange);
}

.pricing-note h4 {
  margin-bottom: 4px;
}

.pricing-note p {
  color: var(--mid-gray);
  font-size: 0.9rem;
}

.form-submit {
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.form-success.active {
  display: block;
}

.form-success .success-icon {
  width: 72px;
  height: 72px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 2rem;
}

.form-success h2 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--mid-gray);
  max-width: 400px;
  margin: 0 auto;
}

/* --- Admin Page --- */
.admin-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 48px 0;
  color: var(--white);
}

.admin-header h1 {
  color: var(--white);
  margin-bottom: 4px;
}

.admin-header p {
  color: rgba(255,255,255,0.7);
}

.admin-content {
  padding: 32px 0 80px;
  background: var(--navy);
  min-height: calc(100vh - 200px);
}

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

.stat-card {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(242,101,34,0.15);
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}

.stat-card .stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.admin-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 24px;
  width: fit-content;
}

.admin-tab {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  background: transparent;
  transition: var(--transition);
}

.admin-tab:hover {
  color: rgba(255,255,255,0.8);
}

.admin-tab.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: none;
}

.admin-table-wrapper {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(242,101,34,0.15);
  overflow: hidden;
}

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

.admin-table th {
  background: rgba(0,0,0,0.2);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(242,101,34,0.1);
}

.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

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

.admin-table tr:hover td {
  background: rgba(242,101,34,0.04);
}

/* Details expandable row */
.admin-table .details-row td {
  background: rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.85);
}

.details-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.details-value {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.details-meta {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.details-meta strong {
  color: rgba(255,255,255,0.7);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge.pending {
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
}

.status-badge.approved {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.status-badge.rejected {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
}

.status-badge.active {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.action-btns {
  display: flex;
  gap: 8px;
}

.action-btn {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.action-btn.approve {
  background: #22c55e;
  color: white;
}

.action-btn.approve:hover {
  background: #16a34a;
}

.action-btn.reject {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.2);
}

.action-btn.reject:hover {
  background: #ef4444;
  color: white;
}

.action-btn.details-btn {
  background: rgba(242,101,34,0.15);
  color: var(--orange);
  border: 1px solid rgba(242,101,34,0.25);
}

.action-btn.details-btn:hover {
  background: var(--orange);
  color: white;
}

.action-btn.waive-btn {
  background: rgba(168,85,247,0.15);
  color: #a855f7;
  border: 1px solid rgba(168,85,247,0.25);
}

.action-btn.waive-btn:hover {
  background: #a855f7;
  color: white;
}

.action-btn.edit {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.action-btn.edit:hover {
  background: rgba(255,255,255,0.15);
}

/* Admin footer override */
.admin-body .footer {
  background: var(--navy-light);
  border-top: 1px solid rgba(242,101,34,0.1);
}

/* --- Admin Login --- */
.admin-login {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--navy);
}

.login-card {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(242,101,34,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  padding: 48px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.login-card .login-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.login-card h2 {
  margin-bottom: 8px;
  color: var(--white);
}

.login-card p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.login-card .form-group {
  text-align: left;
}

.login-card .form-group label {
  color: rgba(255,255,255,0.6);
}

.login-card .form-group input {
  background: rgba(0,0,0,0.2);
  border-color: rgba(242,101,34,0.15);
  color: var(--white);
}

.login-card .form-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,101,34,0.15);
}

.login-card .form-group input::placeholder {
  color: rgba(255,255,255,0.3);
}

.login-card .btn {
  width: 100%;
  justify-content: center;
}

.login-error {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: var(--orange);
}

.footer a:hover {
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

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

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
  }

  .hero { padding: 60px 0; }
  .hero h1 { font-size: 2.2rem; }

  .search-box {
    flex-direction: column;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .filters-row {
    flex-direction: column;
    gap: 8px;
  }

  .filter-group {
    width: 100%;
    min-width: auto;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-table-wrapper {
    overflow-x: auto;
  }

  .modal-actions {
    flex-direction: column;
  }

  .apply-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }
}
