:root {
  --bg-primary: #0D0A14;
  --bg-card: #1A1428;
  --bg-card-hover: #231B3A;
  --accent: #9B59B6;
  --accent-bright: #C084FC;
  --accent-glow: rgba(155, 89, 182, 0.3);
  --text-primary: #F0E6FF;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --border: rgba(155, 89, 182, 0.15);
  --border-hover: rgba(155, 89, 182, 0.3);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--text-primary);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 10, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(155, 89, 182, 0.1);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(155, 89, 182, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(192, 132, 252, 0.05) 0%, transparent 40%),
    linear-gradient(135deg, #0D0A14 0%, #1A1428 50%, #0D0A14 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='40' cy='50' r='2' fill='%239B59B6' opacity='0.2'/%3E%3Ccircle cx='120' cy='150' r='1.5' fill='%23C084FC' opacity='0.15'/%3E%3Ccircle cx='170' cy='40' r='3' fill='%239B59B6' opacity='0.1'/%3E%3Ccircle cx='80' cy='160' r='1' fill='%23C084FC' opacity='0.2'/%3E%3Ccircle cx='150' cy='100' r='2' fill='%239B59B6' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.5;
  animation: float 25s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 24px;
}

.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  margin-bottom: 24px;
  object-fit: cover;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 22px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.hero .subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
}

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

.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(155, 89, 182, 0.1);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: rgba(26, 20, 40, 0.5);
}

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

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.about-image img {
  border-radius: 16px;
  border: 1px solid var(--border);
  width: 100%;
  object-fit: cover;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-bright);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.reference-card {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.reference-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.reference-info {
  padding: 20px;
}

.reference-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.reference-info .location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.reference-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Genres */
.genres-grid {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.genre-tag {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.genre-tag:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  background: rgba(155, 89, 182, 0.1);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Booking Wizard */
.booking-wizard {
  max-width: 500px;
}

.booking-wizard h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.progress-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.progress-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: all 0.3s ease;
}

.progress-step.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.progress-step.done {
  background: var(--success);
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-step h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.service-options {
  display: grid;
  gap: 12px;
}

.service-option {
  padding: 16px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-primary);
}

.service-option:hover {
  border-color: var(--accent);
  background: rgba(155, 89, 182, 0.05);
}

.service-option.selected {
  border-color: var(--accent);
  background: rgba(155, 89, 182, 0.1);
}

.service-option .price {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.booking-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-bright);
}

.footer p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: var(--success);
  color: white;
}

.toast.error {
  background: var(--danger);
  color: white;
}

/* Responsive */
@media (max-width: 1023px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13, 10, 20, 0.98);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

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

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero .tagline {
    font-size: 18px;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 48px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
