/* =============================================
   HAJJ & UMRAH DIRECTORY — COMPONENTS CSS
   Navigation, Cards, Buttons, Forms, Badges
   ============================================= */

/* ─── Navigation ────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 12, 9, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-gold);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text);
  background: var(--glass);
}

.nav-link.active {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile Nav */
.nav-mobile {
  display: flex;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(7, 12, 9, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-5) var(--space-6);
  flex-direction: column;
  gap: var(--space-2);
  z-index: calc(var(--z-sticky) - 1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.3s;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-mobile .nav-link {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}

.btn:hover::after {
  background: rgba(255,255,255,0.06);
}

/* Gold Primary */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #1A1000;
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201,168,76,0.25);
}

.btn-gold:hover {
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
  transform: translateY(-1px);
}

.btn-gold:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(201,168,76,0.2);
}

/* Green */
.btn-green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 2px 12px rgba(26,107,74,0.3);
}

.btn-green:hover {
  box-shadow: 0 4px 24px rgba(26,107,74,0.45);
  transform: translateY(-1px);
}

/* Outline Gold */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold-glow);
  box-shadow: var(--shadow-gold);
}

/* Outline White */
.btn-outline {
  background: var(--glass);
  color: var(--text);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--border-hover);
  color: var(--gold-light);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--glass);
}

/* WhatsApp */
.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 2px 12px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transform: translateY(-1px);
}

/* Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-md);
}

.btn-xl {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
  border-radius: var(--radius-md);
}

.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Icon buttons */
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius);
}

.btn-icon-sm {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: var(--radius-sm);
}

/* ─── Badges / Tags ─────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 3px var(--space-2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-gold {
  background: var(--gold-glow);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.25);
}

.badge-green {
  background: var(--green-glow);
  color: #52D49A;
  border: 1px solid rgba(26,107,74,0.3);
}

.badge-verified {
  background: rgba(82, 200, 122, 0.1);
  color: var(--success);
  border: 1px solid rgba(82, 200, 122, 0.2);
}

.badge-featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(232,201,122,0.1));
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
}

.badge-rank {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1A1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 800;
}

.badge-surface {
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.tag:hover {
  border-color: var(--border-hover);
  color: var(--gold);
  background: var(--gold-glow);
  cursor: pointer;
}

.tag.active {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── Star Ratings ──────────────────────────── */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.star {
  font-size: 14px;
  color: var(--text-dim);
}

.star.filled { color: var(--gold); }
.star.half   { color: var(--gold); opacity: 0.5; }

.rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.rating-score {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold-light);
}

.rating-count {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ─── Agent Card (Standard) ─────────────────── */
.agent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.agent-card-header {
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  border-bottom: 1px solid var(--border);
}

.agent-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  overflow: hidden;
}

.agent-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-info {
  flex: 1;
  min-width: 0;
}

.agent-name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agent-location {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.agent-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.agent-card-body {
  padding: var(--space-4) var(--space-5);
  flex: 1;
}

.agent-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.agent-packages {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.agent-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.agent-price-from {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.agent-price-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.agent-price-currency {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.agent-card-footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--border);
  display: flex;
  gap: var(--space-3);
}

.agent-card-footer .btn {
  flex: 1;
}

/* ─── Featured Agent Card ───────────────────── */
.agent-card.featured {
  background: var(--featured-bg);
  border-color: var(--featured-border);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.1), var(--shadow-gold);
}

.agent-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2), 0 8px 48px rgba(201,168,76,0.25);
}

.featured-label {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1A1000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px var(--space-2);
  border-radius: var(--radius-full);
}

/* ─── Search Bar ────────────────────────────── */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-container:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12), var(--shadow-gold);
}

.search-group {
  display: flex;
  align-items: center;
  flex: 1;
  padding: var(--space-2) var(--space-5);
  gap: var(--space-3);
}

.search-group:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.search-icon {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.8;
}

.search-input-wrap {
  flex: 1;
}

.search-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.search-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  caret-color: var(--gold);
}

.search-input::placeholder {
  color: var(--text-dim);
}

.search-select {
  background: none;
  border: none;
  outline: none;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  padding-right: var(--space-6);
  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='rgba(138,148,136,0.8)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 16px;
}

.search-select option {
  background: var(--surface);
  color: var(--text);
}

.search-btn {
  margin: var(--space-2);
  flex-shrink: 0;
}

/* Mobile search */
@media (max-width: 768px) {
  .search-container {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .search-group {
    width: 100%;
    padding: var(--space-3) var(--space-4);
  }
  .search-group:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .search-btn {
    width: calc(100% - var(--space-4));
    margin: 0 var(--space-2) var(--space-2);
  }
}

/* ─── Filters Sidebar ───────────────────────── */
.filter-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-4));
  max-height: calc(100vh - var(--nav-height) - 2rem);
  overflow-y: auto;
}

.filter-group {
  margin-bottom: var(--space-6);
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  display: block;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.filter-option:hover {
  background: var(--glass);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-option-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.filter-option-count {
  font-size: var(--text-xs);
  color: var(--text-dim);
  background: var(--surface-2);
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

.filter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle {
  width: 44px;
  height: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.toggle.active {
  background: var(--green);
  border-color: var(--green);
}

.toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.toggle.active::after {
  transform: translateX(20px);
}

.price-range {
  margin-top: var(--space-3);
}

.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  height: 4px;
  cursor: pointer;
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-2);
}

.price-range-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ─── Form Elements ─────────────────────────── */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.form-label span.required {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-family: var(--font-sans);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(224,82,82,0.12);
}

.form-select {
  cursor: pointer;
  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='rgba(138,148,136,0.8)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

.form-select option {
  background: var(--surface);
  color: var(--text);
}

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

.form-hint {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.form-error {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  color: var(--error);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ─── Stats Bar ─────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  padding: var(--space-8) var(--space-6);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 768px) {
  .stats-bar {
    flex-wrap: wrap;
    gap: var(--space-6);
  }
  .stat-divider { display: none; }
}

/* ─── Section Headers ───────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-desc {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Pricing Cards ─────────────────────────── */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.pricing-card.popular {
  background: var(--featured-bg);
  border-color: var(--featured-border);
  box-shadow: var(--shadow-gold);
}

.popular-label {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
}

.pricing-icon {
  width: 52px;
  height: 52px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-5);
}

.pricing-card.popular .pricing-icon {
  background: var(--gold-glow);
  border-color: rgba(201,168,76,0.25);
}

.pricing-name {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-1);
}

.pricing-price-value {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-price-currency {
  font-size: var(--text-xl);
  color: var(--text-muted);
}

.pricing-price-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.pricing-feature.included {
  color: var(--text);
}

.pricing-feature .check-icon {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: rgba(82,200,122,0.1);
  border: 1px solid rgba(82,200,122,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  flex-shrink: 0;
  font-size: 12px;
}

.pricing-feature .cross-icon {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  flex-shrink: 0;
  font-size: 12px;
}

/* ─── Review Cards ──────────────────────────── */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: border-color var(--transition);
}

.review-card:hover {
  border-color: var(--border-hover);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  gap: var(--space-4);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.reviewer-name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
}

.reviewer-meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

.review-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Step Cards ────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
}

.step-card.active .step-number {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1A1000;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.step-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .steps-grid::before { display: none; }
}

/* ─── Testimonial ───────────────────────────── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gold-glow);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.testimonial-name {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text);
}

.testimonial-meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ─── Tabs ──────────────────────────────────── */
.tabs {
  display: flex;
  gap: var(--space-1);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
}

.tab {
  flex: 1;
  padding: var(--space-2) var(--space-4);
  border-radius: calc(var(--radius) - 4px);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

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

.tab.active {
  background: var(--surface-3);
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}

/* ─── Progress / Multi-step ──────────────────── */
.step-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-8);
}

.progress-step {
  display: flex;
  align-items: center;
  flex: 1;
}

.progress-step:last-child {
  flex: none;
}

.progress-dot {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: all var(--transition);
  z-index: 1;
  position: relative;
}

.progress-dot.active {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}

.progress-dot.done {
  border-color: var(--success);
  background: rgba(82,200,122,0.1);
  color: var(--success);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 var(--space-2);
  transition: background var(--transition);
}

.progress-line.done {
  background: var(--gold);
}

.progress-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-2);
}

.progress-step-label {
  font-size: 10px;
  color: var(--text-dim);
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.progress-step.active .progress-step-label {
  color: var(--gold);
}

/* ─── Upload Zone ───────────────────────────── */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-10) var(--space-6);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--surface);
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.upload-icon {
  font-size: 40px;
  margin-bottom: var(--space-3);
  opacity: 0.6;
}

.upload-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-1);
}

.upload-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ─── Alert / Notice Boxes ──────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius);
  border: 1px solid;
  font-size: var(--text-sm);
}

.alert-info {
  background: rgba(74, 144, 226, 0.08);
  border-color: rgba(74, 144, 226, 0.2);
  color: #7ABAFF;
}

.alert-success {
  background: rgba(82, 200, 122, 0.08);
  border-color: rgba(82, 200, 122, 0.2);
  color: var(--success);
}

.alert-warning {
  background: rgba(224, 166, 82, 0.08);
  border-color: rgba(224, 166, 82, 0.2);
  color: var(--warning);
}

.alert-gold {
  background: var(--gold-glow);
  border-color: rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
}

/* ─── Breadcrumbs ───────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumb-link {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb-link:hover {
  color: var(--gold);
}

.breadcrumb-sep { color: var(--text-dim); }
.breadcrumb-current { color: var(--text); }

/* ─── Map Placeholder ───────────────────────── */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-3);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* ─── Empty State ───────────────────────────── */
.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-6);
}

.empty-icon {
  font-size: 64px;
  margin-bottom: var(--space-4);
  opacity: 0.4;
}

.empty-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.empty-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto var(--space-6);
}

/* ─── Footer ────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
}

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-logo-text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.footer-col-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-link {
  font-size: var(--text-sm);
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: var(--space-10) 0 var(--space-6);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6) var(--space-8);
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .footer-brand { max-width: none; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
  .footer-bottom-links { gap: var(--space-4); }
}

/* ─── Utility ───────────────────────────────── */
.hidden  { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0 !important; }
