/* ═══════════════════════════════════════════════════
   GigHorse — Luxury Gold Theme
   Cormorant Garamond + DM Sans  ·  Gold / Deep Navy
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --lux-gold: #c8a24b;
  --lux-gold-light: #d4b56a;
  --lux-gold-pale: #f4e4b0;
  --lux-deep: #0d0d1a;
  --lux-dark: #1a1a2e;
  --lux-navy: #16213e;
  --lux-text: #374151;
  --lux-text-dark: #111827;
  --lux-text-muted: #6b7280;
  --lux-white: #ffffff;
  --lux-surface: rgba(255, 255, 255, 0.88);
  --lux-border: rgba(200, 162, 75, 0.18);
  --lux-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --lux-shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.14);
  --lux-radius: 20px;
  --lux-radius-sm: 12px;
  --lux-green: #22c55e;
  --lux-green-dark: #16a34a;
}

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

/* ── Base Typography ── */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fafafa;
  color: var(--lux-text);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  margin-top: 0;
}


/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */

.navbar {
  background: rgba(13, 13, 26, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(200, 162, 75, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-image {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #fff, var(--lux-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  text-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--lux-gold);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lux-gold), transparent);
  transition: width 220ms ease;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-pro-login {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep) !important;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 16px rgba(200, 162, 75, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-pro-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 162, 75, 0.35);
  color: var(--lux-deep) !important;
}
.nav-pro-login::after { display: none !important; }

/* ── Mobile Menu Button ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Mobile Nav ── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 0; right: -300px; width: 300px; height: 100%;
  background: linear-gradient(180deg, var(--lux-deep) 0%, #080812 100%);
  z-index: 201;
  transition: right 0.3s ease;
  padding: 20px;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(200, 162, 75, 0.15);
}
.mobile-nav-menu.active { right: 0; }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(200, 162, 75, 0.12);
  padding-bottom: 20px;
}

.mobile-nav-close {
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--lux-gold); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s ease, background 0.2s;
}
.mobile-nav-links a:hover {
  color: var(--lux-gold);
  background: rgba(200, 162, 75, 0.06);
}
.mobile-nav-links .nav-pro-login {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep) !important;
  padding: 15px 20px; border-radius: 8px;
  text-align: center; margin-top: 10px;
  border: none; font-weight: 700;
}


/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */

.hero {
  background: linear-gradient(135deg, var(--lux-deep) 0%, var(--lux-navy) 50%, var(--lux-dark) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
  min-height: 480px;
  border-bottom: 1px solid rgba(200, 162, 75, 0.15);
}

.hero-slideshow {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.9s ease; will-change: opacity;
}
.hero-slide.active { opacity: 1; }

.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(13, 13, 26, 0.65) 0%,
    rgba(13, 13, 26, 0.45) 40%,
    rgba(13, 13, 26, 0.55) 70%,
    rgba(13, 13, 26, 0.8) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  z-index: 3;
}

.hero .hero-content,
.hero .hero-logo {
  position: relative; z-index: 2;
}

.hero-content {
  flex: 1; max-width: 640px;
}

.hero-logo {
  width: 120px; height: 120px;
  border-radius: 20px; object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 162, 75, 0.2);
  animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  75% { transform: translateY(-6px) rotate(-1deg); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 24px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeSlideUp 0.8s ease-out;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  animation: fadeSlideUp 0.8s ease-out 0.15s both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════
   SEARCH
   ═══════════════════════════════════════════════════ */

.search-container {
  max-width: 1200px;
  margin: -30px auto 0;
  background: var(--lux-white);
  padding: 32px;
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-strong);
  position: relative; z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: fadeSlideUp 0.6s ease-out 0.3s both;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px; align-items: end;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
  margin-bottom: 8px; font-weight: 600;
  color: var(--lux-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select {
  padding: 15px 18px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--lux-radius-sm);
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  background: #fafafa;
  color: var(--lux-text-dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--lux-gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 75, 0.12);
  transform: translateY(-1px);
  background: white;
}

.search-btn {
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep);
  border: none;
  border-radius: var(--lux-radius-sm);
  font-size: 1.05rem; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(200, 162, 75, 0.25);
}
.search-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(200, 162, 75, 0.35);
}


/* ═══════════════════════════════════════════════════
   RESULTS
   ═══════════════════════════════════════════════════ */

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

.results-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 25px; flex-wrap: wrap; gap: 15px;
}

.results-count { font-size: 1.1rem; color: var(--lux-text-muted); font-weight: 500; }

.sort-select {
  padding: 10px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px; background: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--lux-text);
  transition: border-color 0.2s;
}
.sort-select:focus { outline: none; border-color: var(--lux-gold); }

.clear-filters-btn {
  background: var(--lux-dark); color: white;
  border: none; padding: 10px 22px;
  border-radius: 10px; cursor: pointer;
  font-size: 0.9rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s ease;
}
.clear-filters-btn:hover {
  background: var(--lux-deep);
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════
   PROFILE CARDS
   ═══════════════════════════════════════════════════ */

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px; margin-bottom: 40px;
}

.profile-card {
  background: var(--lux-white);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  overflow: hidden; cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Entrance animation */
  opacity: 0;
  transform: translateY(30px);
  animation: cardReveal 0.6s ease-out forwards;
}

.profile-card:nth-child(1) { animation-delay: 0.05s; }
.profile-card:nth-child(2) { animation-delay: 0.1s; }
.profile-card:nth-child(3) { animation-delay: 0.15s; }
.profile-card:nth-child(4) { animation-delay: 0.2s; }
.profile-card:nth-child(5) { animation-delay: 0.25s; }
.profile-card:nth-child(6) { animation-delay: 0.3s; }
.profile-card:nth-child(7) { animation-delay: 0.35s; }
.profile-card:nth-child(8) { animation-delay: 0.4s; }
.profile-card:nth-child(9) { animation-delay: 0.45s; }

@keyframes cardReveal {
  to { opacity: 1; transform: translateY(0); }
}

.profile-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(200, 162, 75, 0.15);
}

/* Gold shimmer sweep on hover */
.profile-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 75, 0.06), transparent);
  transition: left 0.6s ease;
  z-index: 5; pointer-events: none;
}
.profile-card:hover::before { left: 120%; }

/* Profile Image Slider */
.profile-image {
  width: 100%; aspect-ratio: 1 / 1;
  overflow: hidden; position: relative;
}

.profile-image-slider {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
}

.profile-image-track {
  display: flex; height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.profile-image-slide { flex: 0 0 100%; height: 100%; }

.profile-image-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ken Burns zoom on hover */
.profile-card:hover .profile-image-slide img {
  transform: scale(1.05);
}

.profile-image .no-image {
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, var(--lux-deep), var(--lux-navy));
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem; font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}

/* Image Navigation */
.profile-image-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem;
  transition: all 0.3s ease;
  z-index: 10; opacity: 0;
}
.profile-card:hover .profile-image-nav { opacity: 1; }
.profile-image-nav:hover {
  background: rgba(200, 162, 75, 0.7);
  transform: translateY(-50%) scale(1.1);
}
.profile-image-nav.disabled { opacity: 0.3; cursor: not-allowed; }
.profile-image-nav.disabled:hover { transform: translateY(-50%); background: rgba(0, 0, 0, 0.55); }
.profile-image-prev { left: 10px; }
.profile-image-next { right: 10px; }

/* Image Indicators */
.profile-image-indicators {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.profile-image-indicator {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer; transition: all 0.3s ease;
}
.profile-image-indicator.active {
  background: var(--lux-gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(200, 162, 75, 0.5);
}

/* Profile Content */
.profile-content { padding: 22px 24px; }

.profile-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 8px; color: var(--lux-text-dark);
  letter-spacing: -0.01em;
}

.profile-description {
  color: var(--lux-text-muted);
  margin-bottom: 15px; font-size: 0.95rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.profile-details { margin-bottom: 15px; }
.profile-detail {
  display: flex; justify-content: space-between;
  margin-bottom: 6px; font-size: 0.9rem;
}
.profile-detail .label { color: var(--lux-text-muted); font-weight: 500; }
.profile-detail .value { color: var(--lux-text-dark); font-weight: 600; }

/* Tags */
.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; }

.tag {
  background: rgba(200, 162, 75, 0.08);
  color: var(--lux-text); padding: 5px 12px;
  border-radius: 20px; font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(200, 162, 75, 0.15);
  transition: all 0.2s ease;
}
.tag:hover { background: rgba(200, 162, 75, 0.18); }

.tag.highlight {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep); border: none;
  box-shadow: 0 4px 12px rgba(200, 162, 75, 0.3);
}

/* Action Buttons */
.profile-actions { display: flex; gap: 10px; margin-top: 20px; }

.btn {
  padding: 12px 22px; border: none;
  border-radius: 10px; font-size: 0.9rem; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex: 1; display: flex; align-items: center; justify-content: center;
  min-height: 46px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--lux-deep), var(--lux-navy));
  color: white; box-shadow: 0 6px 20px rgba(13, 13, 26, 0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(13, 13, 26, 0.3); }

.btn-secondary {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep); box-shadow: 0 6px 20px rgba(200, 162, 75, 0.2);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200, 162, 75, 0.35); }


/* ═══════════════════════════════════════════════════
   REVIEWS (in-card)
   ═══════════════════════════════════════════════════ */

.profile-reviews {
  margin-top: 15px; padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, #fafafa, #f5f5f5);
  margin: 15px -24px -22px -24px;
  padding: 15px 24px 22px 24px;
  border-radius: 0 0 var(--lux-radius) var(--lux-radius);
}

.review-summary { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.rating-display { display: flex; align-items: center; gap: 8px; }
.rating-stars { display: flex; gap: 1px; }

.star { color: var(--lux-gold); font-size: 1rem; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
.star.empty { color: #e5e5e5; }

.rating-score { font-weight: 700; color: var(--lux-text-dark); font-size: 1rem; }
.rating-count {
  font-size: 0.85rem; color: var(--lux-text-muted);
  font-weight: 500; cursor: pointer;
  text-decoration: underline; text-decoration-color: rgba(200, 162, 75, 0.3);
  text-underline-offset: 3px;
}
.rating-count:hover { color: var(--lux-gold); }

.review-badge {
  background: linear-gradient(135deg, var(--lux-green), var(--lux-green-dark));
  color: white; padding: 4px 10px; border-radius: 16px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* Review Slider */
.reviews-slider { position: relative; margin-top: 10px; }
.reviews-slider-container { overflow: hidden; border-radius: 10px; touch-action: pan-y; }
.reviews-slider-track { display: flex; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.review-slide {
  flex: 0 0 100%;
  background: white; border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 10px; padding: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.review-author { font-weight: 700; color: var(--lux-text-dark); font-size: 0.9rem; }
.review-rating { display: flex; gap: 1px; }
.review-rating .star { font-size: 0.8rem; }

.review-comment {
  color: var(--lux-text); font-size: 0.88rem; line-height: 1.55;
  font-style: italic; position: relative; margin-bottom: 6px;
}
.review-comment::before {
  content: '\201C'; color: var(--lux-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: bold; margin-right: 2px; line-height: 1;
}
.review-comment::after {
  content: '\201D'; color: var(--lux-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: bold; margin-left: 2px;
}

.review-date { color: #9ca3af; font-size: 0.75rem; }

/* Slider Navigation */
.slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.9rem; color: var(--lux-gold);
  transition: all 0.3s ease; z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.slider-nav:hover {
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%) scale(1.1);
  color: var(--lux-deep);
}
.slider-nav.disabled { opacity: 0.3; cursor: not-allowed; }
.slider-nav.disabled:hover { transform: translateY(-50%); box-shadow: none; }
.slider-prev { left: -16px; }
.slider-next { right: -16px; }

.slider-indicators { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.slider-indicator { width: 6px; height: 6px; border-radius: 50%; background: #ddd; cursor: pointer; transition: all 0.3s ease; }
.slider-indicator.active { background: var(--lux-gold); transform: scale(1.3); }


/* ═══════════════════════════════════════════════════
   REVIEW MODAL
   ═══════════════════════════════════════════════════ */

.review-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(13, 13, 26, 0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000; opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease; padding: 20px;
}
.review-modal-overlay.active { opacity: 1; visibility: visible; }

.review-modal {
  background: var(--lux-white);
  border-radius: var(--lux-radius);
  max-width: 600px; max-height: 90vh; width: 100%;
  overflow: hidden; position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(200, 162, 75, 0.15);
}
.review-modal-overlay.active .review-modal { transform: scale(1) translateY(0); }

.review-modal-header {
  background: linear-gradient(135deg, var(--lux-deep) 0%, var(--lux-navy) 100%);
  color: white; padding: 24px; text-align: center; position: relative;
}
.review-modal-header::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}

.review-modal-close {
  position: absolute; top: 15px; right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.review-modal-close:hover { background: rgba(200, 162, 75, 0.3); border-color: var(--lux-gold); }

.review-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; margin-bottom: 10px;
}
.review-modal-summary { display: flex; align-items: center; justify-content: center; gap: 15px; font-size: 1rem; }

.review-modal-content { height: 400px; overflow: hidden; position: relative; }
.review-modal-slider { height: 100%; position: relative; }
.review-modal-track { display: flex; height: 100%; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.review-modal-slide { flex: 0 0 100%; padding: 30px; display: flex; flex-direction: column; justify-content: center; height: 100%; overflow-y: auto; }
.review-modal-slide .review-header { margin-bottom: 20px; text-align: center; border-bottom: 1px solid rgba(0, 0, 0, 0.04); padding-bottom: 15px; }
.review-modal-slide .review-author { font-size: 1.2rem; margin-bottom: 8px; }
.review-modal-slide .review-rating .star { font-size: 1.2rem; }
.review-modal-slide .review-comment { font-size: 1rem; line-height: 1.7; text-align: center; margin-bottom: 20px; font-style: italic; }
.review-modal-slide .review-comment::before, .review-modal-slide .review-comment::after { font-size: 1.6rem; }
.review-modal-slide .review-date { text-align: center; font-size: 0.9rem; color: var(--lux-text-muted); }

.review-modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.2rem; color: var(--lux-gold);
  transition: all 0.3s ease; z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.review-modal-nav:hover { background: white; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); transform: translateY(-50%) scale(1.08); }
.review-modal-nav.disabled { opacity: 0.3; cursor: not-allowed; }
.review-modal-nav.disabled:hover { transform: translateY(-50%); box-shadow: none; }
.review-modal-prev { left: 20px; }
.review-modal-next { right: 20px; }

.review-modal-indicators { display: flex; justify-content: center; gap: 8px; padding: 20px; background: #fafafa; border-top: 1px solid rgba(0, 0, 0, 0.04); }
.review-modal-indicator { width: 8px; height: 8px; border-radius: 50%; background: #ddd; cursor: pointer; transition: all 0.3s ease; }
.review-modal-indicator.active { background: var(--lux-gold); transform: scale(1.3); }


/* ═══════════════════════════════════════════════════
   PROFILE POPUP MODAL
   ═══════════════════════════════════════════════════ */

.profile-popup-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(13, 13, 26, 0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease; padding: 20px;
}
.profile-popup-overlay.active { opacity: 1; visibility: visible; }

.profile-popup {
  background: var(--lux-white);
  border-radius: var(--lux-radius);
  max-width: 800px; max-height: 90vh; width: 100%;
  overflow: hidden; position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(200, 162, 75, 0.15);
}
.profile-popup-overlay.active .profile-popup { transform: scale(1) translateY(0); }

.profile-popup-header {
  position: relative;
  background: linear-gradient(135deg, var(--lux-deep) 0%, var(--lux-navy) 100%);
  color: white; padding: 36px; text-align: center;
}
.profile-popup-header::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}

.profile-popup-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white; width: 42px; height: 42px;
  border-radius: 50%; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.profile-popup-close:hover { background: rgba(200, 162, 75, 0.3); border-color: var(--lux-gold); }

.profile-popup-image {
  width: 200px; height: 200px;
  border-radius: 50%; object-fit: cover;
  border: 4px solid rgba(200, 162, 75, 0.4);
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}
.profile-popup-image:hover { transform: scale(1.05); }

.profile-popup-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.profile-popup-title { font-size: 1.1rem; opacity: 0.85; margin-bottom: 15px; }
.profile-popup-rating { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1rem; }

.profile-popup-content { height: 400px; overflow-y: auto; position: relative; }

.profile-popup-tabs { display: flex; background: #fafafa; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.profile-popup-tab {
  flex: 1; padding: 16px 20px;
  background: none; border: none;
  cursor: pointer; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: var(--lux-text-muted);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.profile-popup-tab.active { color: var(--lux-gold); border-bottom-color: var(--lux-gold); background: white; }
.profile-popup-tab:hover { background: rgba(200, 162, 75, 0.04); }
.profile-popup-tab.active:hover { background: white; }

.profile-popup-tab-content { padding: 30px; display: none; }
.profile-popup-tab-content.active { display: block; }
.profile-popup-bio { line-height: 1.7; color: var(--lux-text); margin-bottom: 25px; font-size: 1rem; }

.profile-popup-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; }
.profile-popup-detail-item {
  background: #fafafa; padding: 18px;
  border-radius: var(--lux-radius-sm);
  border-left: 4px solid var(--lux-gold);
  transition: transform 0.2s ease;
}
.profile-popup-detail-item:hover { transform: translateX(4px); }
.profile-popup-detail-label { font-weight: 700; color: var(--lux-text-dark); margin-bottom: 5px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.profile-popup-detail-value { color: var(--lux-text); font-size: 1rem; }

.profile-popup-services { margin-bottom: 25px; }
.profile-popup-services h4 { margin-bottom: 15px; color: var(--lux-text-dark); font-size: 1.2rem; }
.profile-popup-service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.profile-popup-tag {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep); padding: 8px 16px;
  border-radius: 20px; font-size: 0.9rem; font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.profile-popup-tag:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(200, 162, 75, 0.3); }

.profile-popup-actions {
  background: #fafafa; padding: 20px 30px;
  display: flex; gap: 15px; justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.profile-popup-btn {
  padding: 14px 32px; border: none;
  border-radius: 10px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; text-decoration: none;
  transition: all 0.3s ease; font-size: 1rem;
  min-width: 160px; text-align: center;
}
.profile-popup-btn-primary {
  background: linear-gradient(135deg, var(--lux-deep), var(--lux-navy));
  color: white; box-shadow: 0 6px 20px rgba(13, 13, 26, 0.2);
}
.profile-popup-btn-secondary {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep); box-shadow: 0 6px 20px rgba(200, 162, 75, 0.2);
}
.profile-popup-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18); }


/* ═══════════════════════════════════════════════════
   LOADING & PAGINATION
   ═══════════════════════════════════════════════════ */

.loading { text-align: center; padding: 80px 20px; color: var(--lux-text-muted); }
.loading-spinner {
  width: 44px; height: 44px;
  border: 4px solid rgba(200, 162, 75, 0.15);
  border-top: 4px solid var(--lux-gold);
  border-radius: 50%; animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pagination { display: flex; justify-content: center; gap: 10px; margin: 40px 0; }
.pagination button {
  padding: 11px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: white; color: var(--lux-text);
  border-radius: 10px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  transition: all 0.25s ease;
}
.pagination button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep); border-color: transparent;
  box-shadow: 0 6px 20px rgba(200, 162, 75, 0.25);
}
.pagination button.active {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep); border-color: transparent; font-weight: 700;
}
.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }

.no-results { text-align: center; padding: 80px 20px; color: var(--lux-text-muted); }
.no-results h3 { margin-bottom: 15px; color: var(--lux-text-dark); }


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */

.footer {
  background: linear-gradient(180deg, var(--lux-deep) 0%, #080812 100%);
  color: white; padding: 80px 0 0;
  margin-top: 60px; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}

.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-section h3 {
  margin-bottom: 22px; color: var(--lux-gold);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 700;
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 12px; }
.footer-section ul li a {
  color: rgba(255, 255, 255, 0.55); text-decoration: none;
  transition: all 0.25s ease; font-size: 0.95rem;
}
.footer-section ul li a:hover { color: white; padding-left: 4px; }

.footer-logo-section { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-logo-image { width: 56px; height: 56px; border-radius: 14px; object-fit: cover; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
.footer-logo-text { font-size: 1.8rem; font-weight: 700; color: white; font-family: 'Cormorant Garamond', Georgia, serif; }
.footer-description { color: rgba(255, 255, 255, 0.5); line-height: 1.6; margin-bottom: 24px; font-size: 0.95rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px; color: white; text-decoration: none;
  transition: all 0.3s ease; font-size: 1.1rem;
}
.footer-social a:hover {
  background: rgba(200, 162, 75, 0.15);
  border-color: var(--lux-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(200, 162, 75, 0.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-copyright { color: rgba(255, 255, 255, 0.35); font-size: 0.9rem; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { color: rgba(255, 255, 255, 0.45); text-decoration: none; font-size: 0.9rem; transition: color 0.25s; }
.footer-links a:hover { color: var(--lux-gold); }

/* Footer Slideshow */
.footer.footer--slideshow { position: relative; background: transparent; }
.footer.footer--slideshow .footer-container,
.footer.footer--slideshow .footer-bottom { position: relative; z-index: 2; }
.footer.footer--slideshow .footer-slideshow { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.footer.footer--slideshow .footer-slideshow::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 26, 0.8) 0%, rgba(13, 13, 26, 0.65) 40%, rgba(13, 13, 26, 0.75) 70%, rgba(8, 8, 18, 0.92) 100%);
  z-index: 1; pointer-events: none;
}
.footer.footer--slideshow .footer-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.9s ease;
}
.footer.footer--slideshow .footer-slide.active { opacity: 1; }


/* ═══════════════════════════════════════════════════
   IMMERSIVE ANIMATIONS
   ═══════════════════════════════════════════════════ */

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 20px rgba(200, 162, 75, 0.25); }
  50% { box-shadow: 0 6px 30px rgba(200, 162, 75, 0.45), 0 0 60px rgba(200, 162, 75, 0.1); }
}
.search-btn { animation: pulseGlow 3s ease-in-out infinite; }
.search-btn:hover { animation: none; }


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer-content { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-links { display: none; }
  .mobile-nav-overlay { display: block; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
  .mobile-nav-overlay.active { opacity: 1; visibility: visible; }
  .mobile-nav-menu { display: block; }

  .hero { flex-direction: column; text-align: center; padding: 60px 20px; min-height: 380px; }
  .hero-logo { width: 90px; height: 90px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero p { font-size: 1.05rem; }

  .search-form { grid-template-columns: 1fr; }
  .search-container { margin: -20px 15px 0; padding: 24px; }
  .results-header { flex-direction: column; align-items: stretch; }
  .profiles-grid { grid-template-columns: 1fr; gap: 20px; }
  .profile-actions { flex-direction: column; }

  .review-summary { flex-direction: column; align-items: flex-start; gap: 8px; }
  .review-header { flex-direction: column; gap: 5px; }
  .slider-nav { width: 28px; height: 28px; font-size: 0.8rem; }
  .slider-prev { left: -14px; }
  .slider-next { right: -14px; }
  .profile-image-nav { display: none; }

  .footer-content { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .profile-popup { max-height: 95vh; margin: 10px; width: calc(100% - 20px); }
  .profile-popup-header { padding: 24px; }
  .profile-popup-name { font-size: 1.5rem; }
  .profile-popup-image { width: 150px; height: 150px; }
  .profile-popup-content { height: 350px; }
  .profile-popup-details-grid { grid-template-columns: 1fr; gap: 15px; }
  .profile-popup-actions { flex-direction: column; padding: 15px 20px; }
  .profile-popup-btn { min-width: auto; width: 100%; }
  .profile-popup-tabs { overflow-x: auto; }
  .profile-popup-tab { white-space: nowrap; min-width: 120px; }

  .review-modal { margin: 10px; width: calc(100% - 20px); max-height: 95vh; }
  .review-modal-header { padding: 18px; }
  .review-modal-title { font-size: 1.3rem; }
  .review-modal-content { height: 350px; }
  .review-modal-slide { padding: 20px; }
  .review-modal-nav { width: 36px; height: 36px; font-size: 1rem; }
  .review-modal-prev { left: 10px; }
  .review-modal-next { right: 10px; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 15px; min-height: 320px; }
  .hero-logo { width: 72px; height: 72px; }
  .search-container, .results-container { padding: 0 15px; }
  .search-container { padding: 20px 15px; }
  .footer-logo-image { width: 44px; height: 44px; }
  .footer-logo-text { font-size: 1.4rem; }
  .profile-popup-image { width: 120px; height: 120px; }
}


/* ═══════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════ */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.main-content { display: contents; }
.search-section { display: contents; }
.musicians-listing { display: contents; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ═══════════════════════════════════════════════════
   PROFILE PAGE (individual profile view)
   ═══════════════════════════════════════════════════ */

.profile-page .container {
  max-width: 1200px; margin: 20px auto;
  background: var(--lux-white);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-strong); overflow: hidden;
}
.profile-page .header {
  background: linear-gradient(135deg, var(--lux-deep) 0%, var(--lux-navy) 100%);
  color: white; padding: 48px; text-align: center; position: relative;
}
.profile-page .header::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}
.profile-page .profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700; margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.profile-page .profile-subtitle { font-size: 1.2rem; opacity: 0.85; font-weight: 400; }
.profile-page .back-link { margin-top: 15px; font-size: 1rem; }
.profile-page .back-link a { color: var(--lux-gold-light); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.profile-page .back-link a:hover { color: white; }

.profile-page .profile-video-section { padding: 0; background: #fafafa; text-align: center; }
.profile-page .profile-video-section iframe { width: 100%; max-width: none; height: 450px; border-radius: 0; box-shadow: none; border: none; }

.profile-page .profile-media { padding: 40px; background: #fafafa; }
.profile-page .profile-media-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; align-items: start; }
.profile-page .profile-pic-container { text-align: center; }
.profile-page .profile-pic-container img {
  width: 100%; max-width: 400px; height: auto;
  border-radius: var(--lux-radius-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px; transition: transform 0.4s ease;
}
.profile-page .profile-pic-container img:hover { transform: scale(1.02); }
.profile-page .profile-pic-buttons { display: flex; flex-direction: column; gap: 15px; align-items: center; margin-top: 20px; }
.profile-page .description {
  background: white; padding: 28px;
  border-radius: var(--lux-radius-sm);
  border-left: 4px solid var(--lux-gold);
  font-size: 1.1rem; line-height: 1.7; color: var(--lux-text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.profile-page .media-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--lux-text-dark); margin-bottom: 15px; }

.profile-page .content { padding: 40px; }
.profile-page .section { margin-bottom: 40px; }
.profile-page .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--lux-text-dark); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 3px solid var(--lux-gold); display: inline-block;
}

.profile-page .slideshow-container {
  position: relative; max-width: 100%; margin: 20px 0;
  border-radius: var(--lux-radius-sm); overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}
.profile-page .slide { display: none; text-align: center; background: #000; }
.profile-page .slide.active { display: block; }
.profile-page .slide img { width: 100%; max-height: 500px; object-fit: contain; }
.profile-page .slide iframe { width: 100%; height: 400px; border: none; }
.profile-page .slideshow-controls { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.profile-page .slideshow-controls button {
  padding: 12px 22px; border: none; border-radius: 25px;
  background: rgba(255, 255, 255, 0.92); color: var(--lux-text-dark);
  cursor: pointer; font-weight: 600; font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.profile-page .slideshow-controls button:hover { background: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }
.profile-page .slide-counter {
  position: absolute; top: 20px; right: 20px;
  background: rgba(13, 13, 26, 0.75); backdrop-filter: blur(8px);
  color: white; padding: 8px 16px; border-radius: 20px; font-size: 0.9rem;
  border: 1px solid rgba(200, 162, 75, 0.2);
}

.profile-page .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 30px; }
.profile-page .info-card {
  background: #fafafa; padding: 28px;
  border-radius: var(--lux-radius-sm);
  border-left: 4px solid var(--lux-gold);
  transition: transform 0.25s ease;
}
.profile-page .info-card:hover { transform: translateX(4px); }
.profile-page .info-card h3 { color: var(--lux-gold); margin-bottom: 15px; font-size: 1.3rem; font-family: 'Cormorant Garamond', serif; }

.profile-page .info-table {
  width: 100%; border-collapse: collapse;
  background: white; border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.profile-page .info-table th, .profile-page .info-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(0, 0, 0, 0.04); }
.profile-page .info-table th { background: linear-gradient(135deg, var(--lux-deep), var(--lux-navy)); color: white; font-weight: 600; }
.profile-page .info-table tr:hover { background: rgba(200, 162, 75, 0.03); }

.profile-page .tags-container { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.profile-page .tag {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep); padding: 7px 14px;
  border-radius: 20px; font-size: 0.9rem; font-weight: 700; border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.profile-page .tag:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(200, 162, 75, 0.3); }
.profile-page .button-row { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }

.profile-page .quote-btn {
  display: inline-block; padding: 18px 40px;
  background: linear-gradient(135deg, var(--lux-green), var(--lux-green-dark));
  color: #fff; font-size: 1.3rem; font-weight: 700; border: none;
  border-radius: 50px; cursor: pointer; text-align: center; text-decoration: none;
  font-family: 'DM Sans', sans-serif; transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.3);
}
.profile-page .quote-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(34, 197, 94, 0.45); }
.profile-page .quote-btn-small {
  display: inline-block; padding: 12px 25px;
  background: linear-gradient(135deg, var(--lux-green), var(--lux-green-dark));
  color: #fff; font-size: 1rem; font-weight: 700; border: none;
  border-radius: 50px; cursor: pointer; text-align: center; text-decoration: none;
  font-family: 'DM Sans', sans-serif; transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3); width: 200px;
}
.profile-page .quote-btn-small:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(34, 197, 94, 0.45); }
.profile-page .nyop-btn {
  display: inline-block; padding: 18px 40px;
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep); font-size: 1.3rem; font-weight: 700; border: none;
  border-radius: 50px; cursor: pointer; text-align: center; text-decoration: none;
  font-family: 'DM Sans', sans-serif; transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(200, 162, 75, 0.3);
}
.profile-page .nyop-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(200, 162, 75, 0.45); }
.profile-page .nyop-btn-small {
  display: inline-block; padding: 12px 25px;
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep); font-size: 1rem; font-weight: 700; border: none;
  border-radius: 50px; cursor: pointer; text-align: center; text-decoration: none;
  font-family: 'DM Sans', sans-serif; transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(200, 162, 75, 0.3); width: 200px;
}
.profile-page .nyop-btn-small:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(200, 162, 75, 0.45); }

.profile-page .reviews { margin-top: 40px; padding: 24px; background: #fafafa; border-radius: var(--lux-radius-sm); }
.profile-page .review { border-bottom: 1px solid rgba(0, 0, 0, 0.06); padding: 15px 0; position: relative; }
.profile-page .review:last-child { border-bottom: none; }
.profile-page .review strong { color: var(--lux-text-dark); }
.profile-page .stars { color: var(--lux-gold); }
.profile-page .verified-badge {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--lux-green), var(--lux-green-dark));
  color: white; padding: 3px 10px; border-radius: 14px;
  font-size: 0.8rem; font-weight: 700; margin-left: 10px;
}
.profile-page .verified-badge::before { content: "\2713"; margin-right: 4px; font-weight: bold; }
.profile-page .no-data { text-align: center; color: var(--lux-text-muted); font-style: italic; padding: 20px; }

.profile-page .review-form {
  background: white; padding: 30px;
  border-radius: var(--lux-radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px; border-left: 4px solid var(--lux-gold);
}
.profile-page .form-group { margin-bottom: 20px; }
.profile-page .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--lux-text-dark); }
.profile-page .form-group input, .profile-page .form-group textarea {
  width: 100%; padding: 14px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px; font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.profile-page .form-group input:focus, .profile-page .form-group textarea:focus {
  outline: none; border-color: var(--lux-gold); box-shadow: 0 0 0 4px rgba(200, 162, 75, 0.12);
}
.profile-page .form-group textarea { resize: vertical; min-height: 100px; }
.profile-page .rating-input { display: flex; gap: 5px; align-items: center; }
.profile-page .star-rating { display: flex; gap: 5px; flex-direction: row-reverse; }
.profile-page .star-rating input { display: none; }
.profile-page .star-rating label { font-size: 2rem; color: #ddd; cursor: pointer; transition: color 0.3s ease; order: 2; }
.profile-page .star-rating input:checked ~ label { color: var(--lux-gold); }
.profile-page .star-rating label:hover, .profile-page .star-rating label:hover ~ label { color: var(--lux-gold); }
.profile-page .submit-btn {
  background: linear-gradient(135deg, var(--lux-deep), var(--lux-navy));
  color: white; padding: 15px 30px; border: none;
  border-radius: 10px; font-size: 1.1rem; font-weight: 700;
  font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.3s ease;
}
.profile-page .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13, 13, 26, 0.2); }
.profile-page .submit-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }
.profile-page .success-message { background: rgba(34, 197, 94, 0.1); color: #166534; padding: 16px; border-radius: 10px; margin-bottom: 20px; border: 1px solid rgba(34, 197, 94, 0.2); }
.profile-page .error-message { background: rgba(239, 68, 68, 0.1); color: #991b1b; padding: 16px; border-radius: 10px; margin-bottom: 20px; border: 1px solid rgba(239, 68, 68, 0.2); }

.profile-page .review-form { margin-bottom: 80px; }
.profile-page #reviewsSection { margin-top: 60px; }

@media (max-width: 768px) {
  .profile-page .container { margin: 10px; border-radius: var(--lux-radius-sm); }
  .profile-page .header { padding: 30px 20px; }
  .profile-page .profile-name { font-size: 2rem; }
  .profile-page .profile-media { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
  .profile-page .profile-video-section iframe { height: 250px; }
  .profile-page .content { padding: 20px; }
  .profile-page .info-grid { grid-template-columns: 1fr; gap: 20px; }
  .profile-page .slideshow-controls { bottom: 10px; }
  .profile-page .slideshow-controls button { padding: 10px 15px; font-size: 0.9rem; }
  .profile-page .review-form { padding: 20px; }
}


/* ═══════════════════════════════════════════════════
   ABOUT / HOW IT WORKS PAGES
   ═══════════════════════════════════════════════════ */

.content-section {
  background: var(--lux-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  padding: 44px; margin-bottom: 40px;
}
.content-section h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--lux-text-dark); font-size: 2.2rem;
  margin-bottom: 20px; font-weight: 700; letter-spacing: -0.02em;
}
.content-section h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--lux-text-dark); font-size: 1.5rem;
  margin: 30px 0 15px; font-weight: 700;
}
.content-section p { margin-bottom: 18px; font-size: 1.1rem; line-height: 1.75; color: var(--lux-text); }
.content-section ul { margin-bottom: 20px; padding-left: 20px; color: var(--lux-text); }
.content-section li { margin-bottom: 10px; font-size: 1.05rem; line-height: 1.7; }
.content-section li::marker { color: var(--lux-gold); }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin: 40px 0; }
.stat-card {
  background: var(--lux-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--lux-radius-sm);
  padding: 32px; text-align: center;
  box-shadow: var(--lux-shadow);
  transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-number {
  color: var(--lux-gold); font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700; display: block; margin-bottom: 10px;
}
.stat-label { font-size: 1rem; color: var(--lux-text-muted); font-weight: 600; }

.cta-section {
  background: linear-gradient(135deg, var(--lux-deep), var(--lux-navy));
  color: white; padding: 64px 40px;
  border-radius: var(--lux-radius);
  text-align: center; margin-top: 60px;
  border: 1px solid rgba(200, 162, 75, 0.15);
  box-shadow: var(--lux-shadow-strong);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255, 255, 255, 0.8); margin-bottom: 28px; font-size: 1.15rem; }

@media (max-width: 768px) {
  .content-section { padding: 28px; }
  .content-section h2 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .cta-section { padding: 40px 25px; }
}

/* Narrow page container */
.page-narrow { display: block; max-width: 1200px; margin: 60px auto; padding: 0 20px; width: 100%; }
@media (min-width: 1024px) { .page-narrow { width: 60%; max-width: none; } }

/* How It Works: steps & FAQ */
.steps-section { margin-bottom: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 20px; }
.step-card {
  background: var(--lux-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  padding: 36px; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--lux-shadow-strong); }
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  color: var(--lux-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(200, 162, 75, 0.3);
}
.step-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--lux-text-dark); margin-bottom: 12px; font-weight: 700; }
.step-card p { color: var(--lux-text); line-height: 1.7; }

.faq-item { border-bottom: 1px solid rgba(0, 0, 0, 0.06); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-weight: 700; color: var(--lux-text-dark); margin-bottom: 8px; font-size: 1.05rem; }
.faq-answer { color: var(--lux-text); line-height: 1.7; }

.highlight-box {
  background: #fafafa; border-left: 4px solid var(--lux-gold);
  padding: 20px; border-radius: var(--lux-radius-sm);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.highlight-box p { margin: 0; color: var(--lux-text-dark); }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-card { padding: 28px; }
}
