/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-accent);
  z-index: 100;
  transition: var(--transition-fast);
}

header:hover {
  background: rgba(10, 10, 10, 0.95);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem var(--space-md);
}

.nav strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--color-accent-light);
  font-weight: 600;
  flex-shrink: 0;
}

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

.nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-primary);
  transition: width var(--transition-fast);
}

.nav a:hover {
  color: var(--color-accent-primary);
}

.nav a:hover::after {
  width: 100%;
}

.nav .btn {
  border-color: var(--color-accent-primary);
  color: var(--color-accent-light);
  margin-left: 0;
  margin-bottom: 0;
}

.nav .btn:hover {
  background: var(--color-accent-primary);
  color: var(--color-accent-light);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 101;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--color-accent-light);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 8px;
}

.hamburger span:nth-child(2) {
  top: 14px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.95));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-accent);
  padding: 2rem var(--space-md);
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
  animation: slideDown 0.3s var(--transition-smooth);
}

.mobile-menu.active {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(139, 71, 84, 0.2);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--color-accent-primary);
  padding-left: 0.5rem;
}

.mobile-menu .btn {
  margin: 0;
  width: 100%;
  text-align: center;
}

/* ===== RESPONSIVE BREAKPOINT ===== */
@media (max-width: 768px) {
  .nav strong {
    font-size: 1.1rem;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== HERO FULL SPLIT ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  margin-top: 70px;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 71, 84, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* TEXTE */
.hero-text-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-text {
  max-width: 620px;
  animation: fadeInUp 1s var(--transition-smooth);
}

.hero-text h1 {
  color: var(--color-accent-light);
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.8;
  animation: fadeInUp 1s var(--transition-smooth) 0.2s backwards;
}

/* IMAGE */
.hero-image {
  width: 50vw;
  height: 100vh;
  position: absolute;
  right: -5%;
  top: 0;
  animation: fadeInDown 1.2s var(--transition-smooth) 0.4s backwards;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.8), transparent);
  z-index: 1;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    margin-top: 70px;
    min-height: auto;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 50vh;
    right: 0;
    display: none;
  }

  .hero-text {
    text-align: center;
    margin: 0 auto;
    padding: 3rem var(--space-md);
  }

  .hero-text h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .hero-text > p {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .hero {
    margin-top: 70px;
  }

  .hero-image {
    height: 35vh;
  }

  .hero-text {
    padding: 2rem 1.2rem;
  }

  .hero-text h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 2rem;
  }

  .hero-text > p {
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
  }

  .divider {
    margin: 2.5rem 0 !important;
  }

  .styles-grid {
    margin: 2.5rem 0;
    gap: 1rem;
    justify-content: center;
  }

  .styles-grid span {
    padding: 10px 18px;
  }

  .hero-text > div:last-child {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-text .btn {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
 

  .hero-text {
    padding: 1.5rem 1rem;
  }

  .hero-text h1 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  }
}

/* ===== STYLES GRID ===== */
.styles-grid {
  display: flex;
  flex-wrap: wrap;
  margin: var(--space-md) 0;
  gap: 0.8rem;
  animation: fadeInUp 1s var(--transition-smooth) 0.4s backwards;
}

.styles-grid span {
  padding: 8px 16px;
  border: 1.5px solid var(--color-text-muted);
  border-radius: 3px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  background: transparent;
}

.styles-grid span:hover {
  border-color: var(--color-accent-primary);
  color: var(--color-accent-primary);
  background: rgba(139, 71, 84, 0.1);
  transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-accent-primary);
  color: var(--color-accent-light);
  margin-right: 1rem;
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
  font-size: var(--text-sm);
  font-family: var(--font-text);
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent-primary);
  transition: left var(--transition-fast);
  z-index: -1;
}

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

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 12px 32px rgba(139, 71, 84, 0.4);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text-muted);
}

.btn-secondary:hover {
  border-color: var(--color-accent-primary);
  background: rgba(139, 71, 84, 0.1);
  color: var(--color-accent-primary);
  transform: translateY(-2px);
}

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

.btn:nth-child(2) {
  animation: fadeInUp 1s var(--transition-smooth) 0.5s backwards;
}

/* ===== VENUES SHOWCASE SECTION ===== */
.venues-showcase {
  padding: 8rem var(--space-md);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.venues-showcase::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(139, 71, 84, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.venues-showcase::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.showcase-header {
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.showcase-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--color-accent-light);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s var(--transition-smooth);
}

.showcase-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
  animation: fadeInUp 0.8s var(--transition-smooth) 0.1s backwards;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.venue-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  animation: fadeInUp 0.9s var(--transition-smooth) backwards;
}

.venue-card-1 {
  animation-delay: 0.2s;
}

.venue-card-2 {
  animation-delay: 0.3s;
}

.venue-card-3 {
  animation-delay: 0.4s;
}

.venue-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.15) saturate(1.1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.venue-card:hover .venue-image img {
  transform: scale(1.08) rotate(1deg);
}

/* Decorative overlay gradient */
.venue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 71, 84, 0.3) 0%, transparent 40%, rgba(212, 165, 116, 0.15) 100%);
  z-index: 1;
  transition: opacity 0.6s var(--transition-smooth);
}

.venue-card:hover::before {
  background: linear-gradient(135deg, rgba(139, 71, 84, 0.15) 0%, transparent 40%, rgba(212, 165, 116, 0.25) 100%);
}

/* Border accent */
.venue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212, 165, 116, 0);
  border-radius: var(--radius-md);
  transition: border-color 0.6s var(--transition-smooth);
  z-index: 2;
  pointer-events: none;
}

.venue-card:hover::after {
  border-color: rgba(212, 165, 116, 0.6);
}

.venue-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.95));
  color: var(--color-accent-light);
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  transition: transform 0.6s var(--transition-smooth), text-shadow 0.6s var(--transition-smooth);
}

.venue-card:hover .venue-label {
  transform: translateY(-8px);
  text-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .venues-showcase {
    padding: 5rem var(--space-md);
  }

  .showcase-header {
    margin-bottom: 3rem;
  }

  .showcase-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .venues-grid {
    gap: 1.8rem;
  }

  .venue-card {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 640px) {
  .venues-showcase {
    padding: 3rem var(--space-md);
  }

  .showcase-title {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    margin-bottom: 0.8rem;
  }

  .showcase-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .venues-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .venue-card {
    aspect-ratio: 16 / 12;
  }

  .venue-label {
    padding: 1.2rem 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .venues-showcase {
    padding: 2.5rem var(--space-md);
  }

  .showcase-title {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .showcase-subtitle {
    font-size: 0.9rem;
  }

  .venue-label {
    padding: 1rem 1rem;
    font-size: 0.95rem;
  }
}

/* ===== STATS SECTION ===== */
.stats-big {
  padding: 8rem var(--space-md);
  position: relative;
}

.stats-big::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(139, 71, 84, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-accent-light);
  position: relative;
  z-index: 2;
}

.stats-subtitle {
  max-width: 700px;
  color: var(--color-text-muted);
  margin-bottom: 5rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.stats-section {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.stat {
  background: var(--color-bg-secondary);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 0;
}

.stat:hover {
  border-color: var(--color-accent-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 71, 84, 0.2);
  background: rgba(139, 71, 84, 0.05);
}

.stat:hover::before {
  opacity: 0.05;
}

.stat > * {
  position: relative;
  z-index: 1;
}

.stat strong {
  font-size: 3.5rem;
  color: var(--color-accent-secondary);
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

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

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-accent-secondary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track img {
  min-width: 100%;
  height: 500px;
  object-fit: cover;
  background: #000;
}

.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    transparent 50%
  );
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-accent-secondary);
  border: none;
  color: var(--color-accent-light);
  font-size: 1.8rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: var(--color-accent-primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

/* ===== CAROUSEL + TESTIMONIALS WRAPPER ===== */
.carousel-testimonials-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  animation: fadeInUp 1s var(--transition-smooth) 0.3s backwards;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ===== TESTIMONIALS LIST ===== */
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.testimonials-list::-webkit-scrollbar {
  width: 6px;
}

.testimonials-list::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
  border-radius: 10px;
}

.testimonials-list::-webkit-scrollbar-thumb {
  background: var(--color-accent-primary);
  border-radius: 10px;
}

.testimonials-list::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-hover);
}

.testimonial-item {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, rgba(212, 165, 116, 0.02) 100%);
  border-left: 3px solid var(--color-accent-secondary);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.testimonial-item:hover {
  border-left-color: var(--color-accent-primary);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(212, 165, 116, 0.05) 100%);
  transform: translateX(8px);
}

.testimonial-item:hover::before {
  opacity: 1;
}

.testimonial-quote-mini {
  font-size: 0.95rem;
  color: var(--color-accent-light);
  line-height: 1.6;
  margin: 0 0 0.8rem 0;
  font-style: italic;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.testimonial-type-mini {
  font-size: 0.75rem;
  color: var(--color-accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  display: block;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .carousel-testimonials-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .carousel-track img {
    height: 300px;
  }

  .testimonials-list {
    max-height: 400px;
  }
}

/* ===== FORMS ===== */
form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  font-weight: 500;
}

input, textarea, select {
  padding: 14px 16px;
  background: var(--color-bg-secondary);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-main);
  border-radius: var(--radius-sm);
  font-family: var(--font-text);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

input::placeholder, textarea::placeholder {
  color: var(--color-text-dark);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  background: rgba(139, 71, 84, 0.05);
  box-shadow: 0 0 0 3px rgba(139, 71, 84, 0.1);
}

input.error, textarea.error, select.error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.form-group label {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--color-accent-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* Progress bar */
.form-progress {
  display: flex;
  align-items: center;
  gap: 1.5rem;

}

.progress-bar {
  flex: 1;
  height: 3px;
  background: var(--color-bg-tertiary);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary));
  width: 33.33%;
  transition: width 0.5s var(--transition-smooth);
}

.progress-step {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.step-number {
  color: var(--color-accent-secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

.step-title {
  font-size: 1.3rem;
  color: var(--color-accent-light);
  font-family: var(--font-display);
  font-weight: 600;
}

/* Music styles selector */
.music-styles-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.style-checkbox {
  position: relative;
  cursor: pointer;
}

.style-checkbox input {
  display: none;
}

.style-checkbox span {
  display: inline-block;
  padding: 10px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  background: transparent;
  cursor: pointer;
}

.style-checkbox input:checked + span {
  background: var(--color-accent-primary);
  color: var(--color-accent-light);
  border-color: var(--color-accent-primary);
  transform: scale(1.05);
}

.style-checkbox:hover span {
  border-color: var(--color-accent-primary);
  color: var(--color-accent-primary);
}

/* Form status messages */
.form-status {
  display: none;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.form-status.success {
  display: flex;
  background: rgba(76, 175, 80, 0.1);
  border: 1.5px solid rgba(76, 175, 80, 0.3);
}

.form-status.success .status-icon {
  color: #4caf50;
  font-size: 1.5rem;
  font-weight: bold;
}

.form-status.error {
  display: flex;
  background: rgba(255, 107, 107, 0.1);
  border: 1.5px solid rgba(255, 107, 107, 0.3);
}

.form-status.error .status-icon {
  color: #ff6b6b;
  font-size: 1.5rem;
  font-weight: bold;
}

.status-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
}

.status-text {
  flex: 1;
}

.status-text strong {
  display: block;
  color: var(--color-accent-light);
  margin-bottom: 0.3rem;
}

.status-text p {
  color: var(--color-text-muted);
  margin: 0;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a574' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ===== EQUIPMENT CARDS ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.equipment-card {
  background: var(--color-bg-secondary);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
}

.equipment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 1;
}

.equipment-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent-primary);
  box-shadow: 0 20px 40px rgba(139, 71, 84, 0.2);
}

.equipment-card:hover::before {
  opacity: 0.08;
}

.equipment-img {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  overflow: hidden;
  position: relative;
}

.equipment-img img {
  max-height: 100%;
  max-width: 100%;
  transition: transform var(--transition-smooth);
}

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

.equipment-card h3 {
  margin: 1.5rem;
  color: var(--color-accent-light);
  position: relative;
  z-index: 2;
}

.equipment-card p {
  margin: 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* ===== REVIEW CARDS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.review-card {
  background: var(--color-bg-secondary);
  border: 1.5px solid var(--color-accent-secondary);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  font-size: 6rem;
  color:var(--color-accent-secondary);
  opacity: 0.1;
  top: -1rem;
  right: -0.5rem;
  z-index: 0;
  font-family: var(--font-display);
}

.review-card:hover {
  border-color: var(--color-accent-primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px var(--color-accent-secondary);
}

.review-type {
  font-size: var(--text-xs);
  color: var(--color-accent-secondary);
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.review-text {
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ===== MUSIC CARDS ===== */
.music-card {
  background: var(--color-bg-secondary);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all var(--transition-smooth);
}

.music-card:hover {
  border-color: var(--color-accent-primary);
  box-shadow: 0 12px 24px rgba(139, 71, 84, 0.15);
  transform: translateX(8px);
}

.music-card h3 {
  color: var(--color-accent-light);
  margin-bottom: 0.8rem;
}

.music-desc {
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* VIDEO RESPONSIVE */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--color-border-accent);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-md);
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ===== CONTACT STEPS ===== */
.contact-steps {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-top: 70px;
}

.contact-image {
  height: 100vh;
  position: relative;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.15);
}

.contact-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(10, 10, 10, 0.7));
  z-index: 1;
}

.contact-form {
  padding: 6rem 4rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-main) 0%, var(--color-bg-secondary) 100%);
}

.contact-form h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.form-intro {
  color: var(--color-text-muted);
 
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 500px;
}

.form-step {
  display: none;
  animation: fadeInUp 0.6s var(--transition-smooth);
}

.form-step.active {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
}

.form-step h2 {
  color: var(--color-accent-light);
  margin-bottom: 1.5rem;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 1rem;
}

.form-nav .btn {
  flex: 1;
  text-align: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-accent-primary);
  color: var(--color-accent-light);
  margin-right: 0;
  transition: all var(--transition-fast);
  cursor: pointer;
  font-weight: 500;
}

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

.form-nav .btn-secondary {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text-muted);
}

/* Mobile */
@media (max-width: 900px) {
  .contact-steps {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .contact-image {
    height: 40vh;
  }

  .contact-form {
    padding: 3rem 2rem;
  }

  .form-step.active {
    width: 100%;
  }

  .carousel {
    width: 100%;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-main) 100%);
  border-top: 1.5px solid var(--color-border-accent);
  margin-top: 6rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3.5rem;
  padding: 5rem var(--space-md);
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1.5rem;
  color: var(--color-accent-light);
  letter-spacing: 0.5px;
}

.footer-col h3 {
  font-size: var(--text-lg);
}

.footer-col p,
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.footer-col a {
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-accent-primary);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  position: relative;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-primary);
  transition: width var(--transition-fast);
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding: 2rem var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-dark);
  border-top: 1px solid var(--color-border);
  letter-spacing: 0.5px;
}

/* ===== MATERIAL PAGE ===== */
.materiel-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  margin-top: 3rem;
  animation: fadeInUp 1s var(--transition-smooth) 0.2s backwards;
}

.materiel-hero img {
  width: 75%;
  max-width: 900px;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(139, 71, 84, 0.25);
  border: 1.5px solid var(--color-border-accent);
  filter: brightness(0.9) contrast(1.1);
  transition: all var(--transition-smooth);
}

.materiel-hero img:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 80px rgba(139, 71, 84, 0.35);
}

@media (max-width: 768px) {
  .materiel-hero img {
    width: 100%;
  }

  /* Mobile buttons */
  .btn {
    padding: 12px 24px;
    font-size: var(--text-xs);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }

  /* Stats */
  .stats-big {
    padding: 4rem var(--space-md);
  }

  .stats-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .stats-subtitle {
    font-size: 0.95rem;
    margin-bottom: 3rem;
  }

  .stat {
    padding: 2rem 1.5rem;
  }

  .stat strong {
    font-size: 2.5rem;
  }

  .stat span {
    font-size: var(--text-xs);
  }

  /* Equipment grid */
  .equipment-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .equipment-img {
    height: 160px;
  }

  .equipment-card h3 {
    margin: 1rem;
    font-size: 0.95rem;
  }

  .equipment-card p {
    margin: 0 1rem 1rem;
    font-size: var(--text-xs);
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 1.5rem;
  }

  .review-card::before {
    font-size: 4rem;
  }

  /* Music cards */
  .music-card {
    padding: 1.5rem;
  }

  /* Carousel */
  .carousel-track img {
    height: 250px;
  }

  .carousel-btn {
    font-size: 1.4rem;
    padding: 0.6rem 1rem;
  }

  /* Forms */
  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-step.active {
    width: 100%;
  }

  label {
    font-size: var(--text-xs);
  }

  input, textarea, select {
    padding: 12px 14px;
    font-size: var(--text-xs);
  }

  .form-nav {
    flex-direction: column;
    gap: 0.8rem;
  }

  .form-nav .btn {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    gap: 2rem;
    padding: 3rem var(--space-md);
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 0.95rem;
  }

  .footer-col p,
  .footer-col a {
    font-size: var(--text-xs);
  }

  .section {
    padding: 3rem var(--space-md);
  }

  .divider {
    margin: 0.8rem 0;
  }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
    --space-md: 1.5rem;
    --space-sm: 0.8rem;
  }



  .nav strong {
    font-size: 1rem;
  }

  .section {
    padding: 2.5rem 0.8rem;
  }

  h1 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
  }

  h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }

  /* Hero adjustments */
  .hero {
    margin-top: 60px;
  }

  .hero-image {
    height: 30vh;
  }

  .hero-text {
    padding: 1.5rem 0.8rem;
  }

  .styles-grid {
    gap: 0.6rem;
  }

  .styles-grid span {
    padding: 4px 8px;
    font-size: 0.8rem;
  }

  .stats-big {
    padding: 2.5rem 0.8rem;
  }

  .stats-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 0.5rem;
  }

  .stats-subtitle {
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }

  .stats-section {
    gap: 1.5rem;
  }

  .stat {
    padding: 1.5rem 1rem;
  }

  .stat strong {
    font-size: 2rem;
  }

  /* Equipment grid */
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .equipment-card {
    display: flex;
    flex-direction: row;
  }

  .equipment-img {
    width: 120px;
    min-width: 120px;
    height: 120px;
  }

  .equipment-card h3 {
    margin: 0 0 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .equipment-card p {
    margin: 0 0 0.5rem 1rem;
    font-size: var(--text-xs);
  }

  /* Carousel */
  .carousel {
    width: 100%;
  }

  .carousel-track img {
    height: 200px;
  }

  .carousel-btn {
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
  }

  .carousel-btn.prev {
    left: 8px;
  }

  .carousel-btn.next {
    right: 8px;
  }

  /* Contact form */
  .contact-form {
    padding: 1.5rem 0.8rem;
  }

  .form-intro {
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .form-step h2 {
    font-size: 1.3rem;
  }

  .form-nav {
    margin-top: 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0.8rem;
  }

  .footer-col h3 {
    font-size: 0.95rem;
  }

  .footer-bottom {
    padding: 1.5rem 0.8rem;
    font-size: 0.8rem;
  }

  /* Music cards */
  .music-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --text-xl: 2.2rem;
    --text-lg: 1.8rem;
    --text-md: 1rem;
    --text-sm: 0.85rem;
    --text-xs: 0.75rem;
    --space-xl: 2.5rem;
    --space-lg: 2rem;
    --space-md: 1.2rem;
    --space-sm: 0.6rem;
  }

  header {
    height: 60px;
  }

  /* .nav {
    padding: 2rem 1rem;
  } */

  .nav strong {
    font-size: 0.95rem;
  }

  .mobile-menu {
    top: 60px;
  }



  .section {
    padding: 2rem 0.6rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  /* Hero section */
  .hero {
    margin-top: 60px;
    min-height: auto;
  }

  .hero-text {
    padding: 1rem 0.6rem;
  }

  .hero-text h1 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .hero-text > p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .hero-image {
    height: 25vh;
    min-height: 200px;
  }

  /* Buttons */
  .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
  }

  /* Stats */
  .stats-big {
    padding: 2rem 0.6rem;
  }

  .stats-title {
    font-size: 1.5rem;
  }

  .stats-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .stat {
    padding: 1.2rem 0.8rem;
  }

  .stat strong {
    font-size: 1.8rem;
  }

  /* Styles grid */
  .styles-grid {
    gap: 0.4rem;
    margin: 0.8rem 0;
  }

  .styles-grid span {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  /* Equipment */
  .equipment-grid {
    gap: 1rem;
  }

  .equipment-card {
    flex-direction: column;
  }

  .equipment-img {
    width: 100%;
    min-width: 100%;
    height: 150px;
  }

  .equipment-card h3 {
    margin: 0.8rem 0.8rem 0.3rem;
  }

  .equipment-card p {
    margin: 0 0.8rem 0.8rem;
  }

  /* Carousel */
  .carousel-track img {
    height: 180px;
  }

  .carousel-btn {
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
  }

  /* Forms */
  .contact-form {
    padding: 1.2rem 0.6rem;
  }



  .form-step h2 {
    font-size: 1.1rem;
  }

  label {
    font-size: 0.8rem;
    margin-top: 0.8rem;
  }

  input, textarea, select {
    font-size: 0.8rem;
    padding: 10px 12px;
  }

  /* Footer */
  .footer-grid {
    padding: 1.5rem 0.6rem;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .footer-col p,
  .footer-col a {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .footer-bottom {
    padding: 1rem 0.6rem;
    font-size: 0.7rem;
  }

  /* Video wrapper */
  .video-wrapper {
    margin-bottom: 1.2rem;
  }

  /* Reviews grid */
  .reviews-grid {
    gap: 1.2rem;
  }

  .review-card {
    padding: 1.2rem;
  }

  .review-card::before {
    font-size: 3rem;
  }

  .review-type {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
  }

  .review-text {
    font-size: 0.8rem;
  }
}