/* Custom Design System for Skulls & Roses Tattoo Studio */

/* Reset & Variables */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Cinzel:wght@400;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-obsidian: #080808;
  --bg-charcoal: #121212;
  --bg-card: rgba(22, 22, 22, 0.7);
  --bg-card-hover: rgba(30, 30, 30, 0.9);
  
  --gold-primary: #d4af37;
  --gold-secondary: #aa7c11;
  --gold-light: #f3e5ab;
  --gold-gradient: linear-gradient(135deg, #aa7c11 0%, #d4af37 50%, #f3e5ab 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.25);
  
  --rose-primary: #8a1a23;
  --rose-accent: #e63946;
  --rose-gradient: linear-gradient(135deg, #4a0d12 0%, #8a1a23 50%, #e63946 100%);
  
  --text-white: #ffffff;
  --text-ivory: #e0e0e0;
  --text-muted: #888888;
  --border-color: rgba(212, 175, 55, 0.15);
  --border-focus: rgba(212, 175, 55, 0.6);
  
  --font-heading: 'Cinzel', serif;
  --font-heading-deco: 'Cinzel Decorative', serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-obsidian);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-obsidian);
  color: var(--text-ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Custom Cursor */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-cursor-dot {
  width: 4px;
  height: 4px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}
.hovered-element {
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-light);
  box-shadow: var(--gold-glow);
}

/* Typography & General Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  color: var(--text-white);
  text-transform: uppercase;
}
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.rose-text {
  background: var(--rose-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section-subtitle {
  font-family: var(--font-body);
  color: var(--gold-primary);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
}
.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}
.text-center {
  text-align: center;
}

/* Layout Utilities */
section {
  padding: 100px 8% 80px;
  position: relative;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition-smooth);
}
.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--gold-glow);
  background: var(--bg-card-hover);
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
}
header.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 8%;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.logo {
  font-family: var(--font-heading-deco);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-ivory);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  padding: 5px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}
.nav-links a:hover {
  color: var(--gold-primary);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 10px 22px;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--gold-gradient);
  color: var(--bg-obsidian);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}
.menu-btn {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  background: linear-gradient(to right, rgba(8, 8, 8, 0.95) 30%, rgba(8, 8, 8, 0.4) 100%), url('assets/hero_tattoo.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.8) 70%, rgba(8, 8, 8, 1) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 6px;
  margin-bottom: 20px;
  display: block;
  font-weight: 600;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-title {
  font-family: var(--font-heading-deco);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-white);
  animation: fadeInUp 1s ease forwards;
}
.hero-description {
  font-size: 1.15rem;
  color: var(--text-ivory);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 580px;
  animation: fadeInUp 1.2s ease forwards;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1.4s ease forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-obsidian);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4), var(--gold-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: fadeInUp 1.6s ease forwards;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: var(--text-white);
  animation: scrollDown 2s infinite ease-in-out;
}
.scroll-text {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 1.05rem;
  font-weight: 300;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about-highlight-card {
  border-left: 3px solid var(--gold-primary);
  padding-left: 15px;
}
.about-highlight-card h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 5px;
}
.about-highlight-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.about-showcase {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  aspect-ratio: 4/5;
  background: url('assets/portfolio_realism.png') center/cover no-repeat;
}
.about-showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.6) 60%, rgba(8, 8, 8, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-showcase-tag {
  color: var(--gold-primary);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.about-showcase-title {
  font-size: 1.4rem;
  margin-top: 5px;
}

/* Interactive Style Explorer */
.style-explorer {
  background-color: var(--bg-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.style-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.style-card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.style-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 15%, rgba(8, 8, 8, 0.4) 60%, rgba(8, 8, 8, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: var(--transition-smooth);
}
.style-card:hover .style-card-bg {
  transform: scale(1.08);
}
.style-card:hover .style-card-overlay {
  background: linear-gradient(to top, rgba(138, 26, 35, 0.9) 15%, rgba(8, 8, 8, 0.6) 60%, rgba(8, 8, 8, 0.2) 100%);
}
.style-card-num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}
.style-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  transition: var(--transition-fast);
}
.style-card:hover h3 {
  color: var(--gold-light);
}
.style-card p {
  font-size: 0.85rem;
  color: var(--text-ivory);
  opacity: 0.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.style-card:hover p {
  max-height: 80px;
  opacity: 1;
  margin-top: 5px;
}

/* Artist Showcase */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.artist-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-charcoal);
  transition: var(--transition-smooth);
}
.artist-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.artist-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.artist-card:hover .artist-img-wrapper img {
  transform: scale(1.05);
}
.artist-info {
  padding: 25px;
  text-align: center;
}
.artist-specialty {
  color: var(--gold-primary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.artist-info h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.artist-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.artist-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.artist-socials a {
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.artist-socials a:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

/* Portfolio Section */
.portfolio {
  background-color: var(--bg-charcoal);
}
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-ivory);
  padding: 10px 24px;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 30px;
  transition: var(--transition-smooth);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 20px;
  text-align: center;
}
.portfolio-item:hover img {
  transform: scale(1.08);
}
.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}
.portfolio-item-style {
  color: var(--gold-primary);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
}
.portfolio-item-title {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 10px;
}
.portfolio-item-artist {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.portfolio-zoom-icon {
  margin-top: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80vh;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: var(--transition-fast);
}
.lightbox-close:hover {
  color: var(--gold-primary);
}
.lightbox-caption {
  color: var(--text-ivory);
  text-align: center;
  margin-top: 15px;
}
.lightbox-caption h3 {
  font-size: 1.2rem;
  color: var(--gold-primary);
}
.lightbox-caption p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Booking Wizard */
.booking-wizard-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.booking-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
}
.booking-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}
.booking-progress-bar {
  position: absolute;
  top: 18px;
  left: 0;
  height: 2px;
  background: var(--gold-gradient);
  z-index: 2;
  width: 0%;
  transition: var(--transition-smooth);
}
.booking-step-indicator {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 120px;
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-charcoal);
  border: 2px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}
.booking-step-indicator.active .step-num {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: var(--bg-obsidian);
  box-shadow: var(--gold-glow);
}
.booking-step-indicator.completed .step-num {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: var(--bg-obsidian);
}
.step-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  transition: var(--transition-fast);
}
.booking-step-indicator.active .step-label {
  color: var(--text-white);
}

.wizard-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.wizard-panel.active {
  display: block;
}

/* Step 1: Artist Selector Grid */
.artist-select-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.artist-select-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.artist-select-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.02);
}
.artist-select-card.selected {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: var(--gold-glow);
}
.artist-select-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.artist-select-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artist-select-avatar.any-avatar {
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-obsidian);
}
.artist-select-card h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.artist-select-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Form Styling */
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-white);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* File Upload Mock */
.file-upload-mock {
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.file-upload-mock:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.02);
}
.file-upload-icon {
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.file-upload-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.file-upload-text span {
  color: var(--gold-primary);
  text-decoration: underline;
}

/* Wizard Navigation Buttons */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
}
.btn-wizard {
  padding: 12px 30px;
  font-size: 0.85rem;
}

/* Confirmation Summary Card */
.ticket-card {
  background: linear-gradient(135deg, rgba(30,30,30,0.8) 0%, rgba(15,15,15,0.9) 100%);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--gold-glow);
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}
.ticket-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ticket-header {
  border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
  padding-bottom: 25px;
  margin-bottom: 25px;
  text-align: center;
}
.ticket-logo {
  font-family: var(--font-heading-deco);
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 5px;
}
.ticket-logo span {
  color: var(--gold-primary);
}
.ticket-id {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
}
.ticket-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ticket-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.ticket-value {
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 500;
  text-align: right;
}

/* Aftercare Guide Section */
.aftercare {
  background-color: var(--bg-charcoal);
}
.aftercare-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.aftercare-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}
.aftercare-tab-btn:hover {
  color: var(--text-white);
}
.aftercare-tab-btn.active {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}
.aftercare-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.aftercare-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}
.aftercare-panel.active {
  display: block;
}
.aftercare-instruction-list {
  list-style: none;
}
.aftercare-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}
.aftercare-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.aftercare-item-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-white);
}
.aftercare-item-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Testimonials Carousel */
.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 40px;
  text-align: center;
}
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  margin: 0 auto 20px;
  overflow: hidden;
  box-shadow: var(--gold-glow);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 400;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.testimonial-style {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-charcoal);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10;
}
.carousel-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}
.carousel-btn-prev {
  left: 0;
}
.carousel-btn-next {
  right: 0;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}
.carousel-dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
}

/* FAQ Accordion */
.faq {
  background-color: var(--bg-charcoal);
}
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question h3 {
  font-size: 1.15rem;
  color: var(--text-white);
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  transition: var(--transition-fast);
}
.faq-question:hover h3 {
  color: var(--gold-primary);
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding-top 0.4s ease;
  padding-top: 0;
}
.faq-item.active .faq-answer {
  padding-top: 15px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Footer Section */
footer {
  background-color: var(--bg-obsidian);
  border-top: 1px solid var(--border-color);
  padding: 80px 8% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h2 {
  font-family: var(--font-heading-deco);
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.footer-brand h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
  font-weight: 300;
}
.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-ivory);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-social-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-3px);
}
.footer-links h3, .footer-newsletter h3 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}
.footer-links h3::after, .footer-newsletter h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1.5px;
  background: var(--gold-primary);
}
.footer-links-list {
  list-style: none;
}
.footer-links-list li {
  margin-bottom: 12px;
}
.footer-links-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.footer-links-list a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}
.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 300;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.newsletter-form .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0 25px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollDown {
  0% {
    top: -20px;
  }
  50% {
    top: 60px;
  }
  100% {
    top: 60px;
    opacity: 0;
  }
}

/* Scroll reveal class defaults */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1024px) {
  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-showcase {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 5%;
  }
  header.scrolled {
    padding: 12px 5%;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-charcoal);
    flex-direction: column;
    padding: 80px 40px;
    transition: 0.5s ease;
    border-left: 1px solid var(--border-color);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-cta {
    display: none;
  }
  .menu-btn {
    display: block;
    z-index: 1001;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .style-grid {
    grid-template-columns: 1fr;
  }
  .artists-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artist-select-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .custom-cursor, .custom-cursor-dot {
    display: none;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .artist-select-grid {
    grid-template-columns: 1fr;
  }
  .aftercare-tabs {
    flex-direction: column;
    align-items: center;
  }
}
