/* =====================================================
   Ark SP - Ultimate Premium Design System
   Black & Gold Luxury Theme
   ===================================================== */

/* ─────────────────────────────────────────────────
   1. Premium Background with Depth
   ───────────────────────────────────────────────── */

.premium-bg {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #000000 0%, #050505 50%, #0a0a0a 100%);
  min-height: 100vh;
}

/* Subtle noise texture overlay */
.premium-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

/* ─────────────────────────────────────────────────
   2. Typography
   ───────────────────────────────────────────────── */

.text-gold {
  color: #D4AF37;
}

.text-gold-glow {
  color: #D4AF37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Hero Title - Big Impact */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: #D4AF37;
  position: relative;
  display: inline-block;
}

/* Section Title with Gold Bar */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.section-title .gold {
  color: #D4AF37;
}

.section-subtitle {
  font-size: 16px;
  color: #888;
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 16px;
}

/* Number Display - Outfit Font */
.number-xl {
  font-family: 'Outfit', var(--font-primary), sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: #D4AF37;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.number-lg {
  font-family: 'Outfit', var(--font-primary), sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: #D4AF37;
}

.number-md {
  font-family: 'Outfit', var(--font-primary), sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

/* ─────────────────────────────────────────────────
   3. Premium Cards - With Depth
   ───────────────────────────────────────────────── */

.card-premium {
  position: relative;
  background: linear-gradient(145deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 32px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: all 0.3s ease;
}

.card-premium:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(212, 175, 55, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* Card with Gold Top Accent */
.card-premium.card-gold-top {
  border-top: 3px solid #D4AF37;
}

/* Glass Card */
.glass-card {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

/* ─────────────────────────────────────────────────
   4. Premium Buttons
   ───────────────────────────────────────────────── */

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  color: #000;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(212, 175, 55, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s ease;
}

.btn-premium:hover {
  background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(212, 175, 55, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-premium:active {
  transform: translateY(0);
}

.btn-premium-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 47px;
  background: transparent;
  color: #D4AF37;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-premium-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-lg {
  padding: 20px 56px;
  font-size: 17px;
}

.btn-sm {
  padding: 14px 32px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: #999;
  border: 1px solid #333;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  color: #fff;
  border-color: #555;
}

/* ─────────────────────────────────────────────────
   5. Header - Premium Glass
   ───────────────────────────────────────────────── */

.header.glass-header {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header.glass-header.is-scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.header-logo .text-gold {
  color: #D4AF37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.link-premium {
  color: #888;
  transition: color 0.2s ease;
}

.link-premium:hover {
  color: #D4AF37;
}

/* ─────────────────────────────────────────────────
   6. Hero Section
   ───────────────────────────────────────────────── */

.hero-section {
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #999;
  margin: 24px 0 40px;
  max-width: 500px;
}

.hero-features {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.hero-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #D4AF37;
  border-radius: 50%;
}

/* ─────────────────────────────────────────────────
   7. Price Display Cards
   ───────────────────────────────────────────────── */

.price-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.price-card {
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.price-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.price-card__label {
  font-size: 14px;
  font-weight: 600;
  color: #D4AF37;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-card__sublabel {
  font-size: 13px;
  color: #555;
  margin-bottom: 24px;
}

.price-card__value {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.price-card__value.gold {
  color: #D4AF37;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.price-card__unit {
  font-size: 16px;
  color: #666;
}

.price-card__desc {
  font-size: 13px;
  color: #444;
  margin-top: 20px;
}

/* Status Badge */
.status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #22C55E;
}

.status-live::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* ─────────────────────────────────────────────────
   8. Statistics Section
   ───────────────────────────────────────────────── */

.stats-section {
  padding: 80px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.02), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

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

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.stat-value .suffix {
  font-size: 20px;
  color: #888;
  font-weight: 400;
}

.stat-label {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stat-value {
    font-size: 36px;
  }
}

/* ─────────────────────────────────────────────────
   9. Features / Benefits Grid
   ───────────────────────────────────────────────── */

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.features-grid .feature-card {
  flex: 0 1 280px;
}

.feature-card {
  background: linear-gradient(180deg, #0f0f0f 0%, #080808 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  font-size: 24px;
  color: #D4AF37;
}

.feature-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────
   10. Process Steps (5-Step Premium)
   ───────────────────────────────────────────────── */

/* 5-Step Process Grid */
.process-5-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.process-5-step {
  flex: 0 0 140px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-5-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: #D4AF37;
  position: relative;
  transition: all 0.3s ease;
}

.process-5-step:hover .process-5-icon {
  border-color: #D4AF37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}

.process-5-step.is-highlight .process-5-icon {
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  border-color: #D4AF37;
  color: #000;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.process-5-icon.is-complete {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  border-color: #22C55E;
  color: #fff;
}

.process-5-num {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.process-5-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.process-5-desc {
  font-size: 12px;
  color: #666;
}

.process-5-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 175, 55, 0.5);
  padding-top: 24px;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

/* Legacy 3-step grid (keep for other pages) */
.process-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 120px;
  right: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.5));
}

.process-grid::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 120px;
  width: 0;
  height: 2px;
  background: #D4AF37;
  animation: progressBar 3s ease-in-out infinite;
}

@keyframes progressBar {
  0% { width: 0; left: 120px; }
  50% { width: calc(100% - 240px); left: 120px; }
  100% { width: 0; left: calc(100% - 120px); }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.process-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.process-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-5-grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .process-5-arrow {
    display: none;
  }

  .process-5-step {
    flex: 0 0 calc(33% - 16px);
  }
}

@media (max-width: 600px) {
  .process-5-step {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .process-grid {
    flex-direction: column;
    gap: 48px;
  }

  .process-grid::before,
  .process-grid::after {
    display: none;
  }
}

/* ─────────────────────────────────────────────────
   11. Tables - Premium Style
   ───────────────────────────────────────────────── */

.table-premium {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.table-premium thead {
  background: rgba(212, 175, 55, 0.08);
}

.table-premium th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.table-premium td {
  padding: 20px;
  font-size: 15px;
  color: #ccc;
  border-bottom: 1px solid #1a1a1a;
}

.table-premium tbody tr {
  transition: background 0.2s ease;
}

.table-premium tbody tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

/* ─────────────────────────────────────────────────
   12. Form Inputs
   ───────────────────────────────────────────────── */

.input-premium {
  width: 100%;
  padding: 18px 20px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 16px;
  transition: all 0.2s ease;
}

.input-premium::placeholder {
  color: #555;
}

.input-premium:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.label-premium {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin-bottom: 10px;
}

/* Input Group */
.input-group {
  display: flex;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.input-group:focus-within {
  border-color: #D4AF37;
}

.input-group .input-premium {
  border: none;
  border-radius: 0;
}

.input-group .input-unit {
  padding: 18px 20px;
  background: #1a1a1a;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-left: 1px solid #2a2a2a;
}

/* ─────────────────────────────────────────────────
   13. FAQ Accordion
   ───────────────────────────────────────────────── */

.accordion-item {
  background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.accordion-item.is-open {
  border-color: #D4AF37;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
}

.accordion-title {
  font-size: 16px;
  font-weight: 600;
  color: #ccc;
  transition: color 0.2s ease;
}

.accordion-item.is-open .accordion-title {
  color: #D4AF37;
}

.accordion-icon {
  font-size: 24px;
  color: #555;
  transition: all 0.3s ease;
}

.accordion-item.is-open .accordion-icon {
  color: #D4AF37;
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 24px 24px;
  color: #999;
  font-size: 15px;
  line-height: 1.8;
  display: none;
}

.accordion-item.is-open .accordion-body {
  display: block;
}

/* ─────────────────────────────────────────────────
   14. Auth Pages
   ───────────────────────────────────────────────── */

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    #000;
  padding: 40px 20px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  border-radius: 0 0 10px 10px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 40px;
}

.auth-logo-text {
  font-size: 28px;
  font-weight: 800;
  color: #D4AF37;
  letter-spacing: 0.1em;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}

.auth-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
  text-align: center;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
  font-size: 14px;
  color: #666;
}

.auth-footer a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
}

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

/* ─────────────────────────────────────────────────
   15. Gallery Cards
   ───────────────────────────────────────────────── */

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

.gallery-card {
  background: linear-gradient(180deg, #0f0f0f 0%, #080808 100%);
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-card__image {
  aspect-ratio: 16/10;
  background: #111;
  overflow: hidden;
}

.gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card__image img {
  transform: scale(1.05);
}

.gallery-card__body {
  padding: 24px;
}

.gallery-card__type {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 12px;
}

.gallery-card__amount {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.gallery-card__meta {
  font-size: 13px;
  color: #555;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ─────────────────────────────────────────────────
   16. Badges
   ───────────────────────────────────────────────── */

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
}

.badge-success {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
}

.badge-error {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

/* ─────────────────────────────────────────────────
   17. Dividers
   ───────────────────────────────────────────────── */

.divider {
  height: 1px;
  background: #1a1a1a;
  margin: 32px 0;
}

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  margin: 32px 0;
}

/* ─────────────────────────────────────────────────
   18. Pagination
   ───────────────────────────────────────────────── */

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination-item {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  color: #888;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-item:hover {
  border-color: #D4AF37;
  color: #D4AF37;
}

.pagination-item.is-active {
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  border-color: #D4AF37;
  color: #000;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────
   19. Scroll Reveal Animation
   ───────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────
   20. Notices & Reviews Section
   ───────────────────────────────────────────────── */

.notices-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}

.notices-reviews-grid > div {
  min-height: 400px;
}

.notice-list {
  padding: 0;
  overflow: hidden;
}

.notice-item-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.notice-item-premium:last-child {
  border-bottom: none;
}

.notice-item-premium:hover {
  background: rgba(212, 175, 55, 0.05);
}

.review-card {
  background: linear-gradient(145deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .notices-reviews-grid {
    grid-template-columns: 1fr;
  }

  .notices-reviews-grid > div {
    min-height: auto;
  }
}

/* ─────────────────────────────────────────────────
   21. Footer
   ───────────────────────────────────────────────── */

.footer {
  background: #000;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 32px 0;
}

.footer-links a {
  color: #666;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #D4AF37;
}

/* ─────────────────────────────────────────────────
   21. Admin Styles (Keep as is)
   ───────────────────────────────────────────────── */

.admin-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 240px;
  background: #0a0a0a;
  border-right: 1px solid #1a1a1a;
  padding: 24px 0;
  z-index: 100;
}

.admin-content {
  margin-left: 240px;
  padding: 32px;
  min-height: 100vh;
  background: #000;
}

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

.admin-stat-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 24px;
}

.admin-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #D4AF37;
}

/* ─────────────────────────────────────────────────
   22. Utilities
   ───────────────────────────────────────────────── */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: #666; }

.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; }
.mt-6 { margin-top: 32px; }
.mt-8 { margin-top: 48px; }
.mt-10 { margin-top: 64px; }

.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 24px; }
.mb-6 { margin-bottom: 32px; }
.mb-8 { margin-bottom: 48px; }
.mb-10 { margin-bottom: 64px; }

.p-4 { padding: 16px; }
.p-5 { padding: 24px; }
.p-6 { padding: 32px; }
.p-8 { padding: 48px; }

.py-6 { padding-top: 32px; padding-bottom: 32px; }
.py-8 { padding-top: 48px; padding-bottom: 48px; }
.py-10 { padding-top: 64px; padding-bottom: 64px; }
.py-12 { padding-top: 80px; padding-bottom: 80px; }

.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .price-display {
    grid-template-columns: 1fr;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
}
