/* ── Custom Properties ── */
:root {
  --bg: #0a0a0a;
  --text: #dcd8cf;
  --text-hover: #fff;
  --accent: #558AC6;
  --card-bg: rgba(0, 0, 0, 0.6);
  --overlay: rgba(0, 0, 0, 0.7);
  --star: #f5c518;
  --font-heading: 'Jura', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --nav-height: 60px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--text-hover);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: var(--nav-height);
}

.nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-link {
  color: var(--text);
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-hover);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 60%;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Sections (shared) ── */
.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
}

.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: -1;
}

.section-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  text-shadow: 0 0 4px #222;
}

/* ── Hero ── */
.hero-section {
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 230px;
}

.dj-text {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  margin-left: 0.5rem;
}

.soundwave {
  width: 150px;
  opacity: 0.2;
}

.soundwave-right {
  transform: scaleX(-1);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--accent);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.hero-description {
  max-width: 500px;
  text-shadow: 0 0 4px #222;
}

.hero-description p {
  margin-bottom: 0.75rem;
}

.hero-description em {
  color: var(--accent);
  font-style: italic;
}

.cta-button {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
  background: #4079b5;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px;
}

.service-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
}

.service-info {
  padding: 1.25rem;
}

.service-info h3 {
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-info h3 i {
  margin-right: 0.5rem;
}

.service-info p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Packages ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(4px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

.package-card:hover {
  transform: translateY(-4px);
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-hover);
  margin-bottom: 0.25rem;
}

.package-savings {
  font-size: 0.9rem;
  color: #4caf50;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.package-items {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 1.5rem;
  flex: 1;
}

.package-items li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.package-items li:last-child {
  border-bottom: none;
}

.package-items li i {
  color: var(--accent);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.package-cta {
  padding: 0.7rem 2rem;
  font-size: 0.9rem;
  margin-top: auto;
}

/* ── Reviews ── */
.reviews-badge {
  text-align: center;
  margin-bottom: 2rem;
}

.weddingwire-badge {
  height: 60px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.weddingwire-badge:hover {
  opacity: 1;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.review-card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 500px;
  flex: 1 1 400px;
  backdrop-filter: blur(4px);
}

.review-stars {
  margin-bottom: 0.5rem;
}

.review-stars i {
  color: var(--star);
  font-size: 0.9rem;
}

.review-rating {
  margin-left: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--star);
}

.review-title {
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.review-text .fa-quote-left {
  color: var(--accent);
  margin-right: 0.4rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

.review-meta {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ── Gallery ── */
.gallery-subtitle {
  font-family: var(--font-heading);
  color: var(--accent);
  text-align: center;
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

.gallery-subtitle i {
  margin-right: 0.5rem;
}

.photo-grid {
  columns: 4 240px;
  column-gap: 10px;
}

.photo-grid .gallery-photo {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s, filter 0.3s;
  break-inside: avoid;
}

.photo-grid .gallery-photo:hover {
  transform: scale(1.03);
  opacity: 0.9;
  filter: brightness(1.1);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--accent);
  width: 24px;
  text-align: center;
}

.contact-cta {
  margin-top: 1.5rem;
}

.contact-cta p {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-status.success {
  color: #4caf50;
}

.form-status.error {
  color: #e53935;
}

/* ── Footer ── */
#footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #333;
  border-radius: 50%;
  color: var(--text);
  font-size: 1.2rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.social-icon:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 15px rgba(85, 138, 198, 0.6);
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s ease, transform 0.3s ease;
}

#lightbox-img.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #fff;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  color: #fff;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.5);
  padding: 0.3rem 0.9rem;
  border-radius: 1rem;
  pointer-events: none;
  user-select: none;
}

/* ── Scroll Animations ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Quote Wizard ── */
.quote-wizard {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(6px);
}

.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.progress-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 1;
  cursor: pointer;
}

.progress-dot:hover .dot-number {
  background: rgba(85, 138, 198, 0.5);
  color: #fff;
}

.progress-dot.active:hover .dot-number {
  background: var(--accent);
}

.dot-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: background 0.3s, color 0.3s;
}

.dot-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  transition: color 0.3s;
}

.progress-dot.active .dot-number {
  background: var(--accent);
  color: #fff;
}

.progress-dot.active .dot-label {
  color: var(--accent);
}

.progress-dot.completed .dot-number {
  background: rgba(85, 138, 198, 0.3);
  color: var(--accent);
}

.progress-dot.completed .dot-label {
  color: rgba(255, 255, 255, 0.6);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: wizardFadeIn 0.3s ease-out;
  min-height: 280px;
}

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step.shake {
  animation: wizardShake 0.5s ease-in-out;
}

@keyframes wizardShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

.wizard-step-title {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.wizard-step-desc {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.wizard-sub-title {
  font-family: var(--font-heading);
  color: var(--text-hover);
  font-size: 1.1rem;
  text-align: center;
  margin: 1.5rem 0 0.25rem;
}

.wizard-sub-title:first-of-type {
  margin-top: 0;
}

.wizard-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Option cards (event type / tiers) */
.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.option-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.option-card,
.qty-btn,
.toggle-switch,
.wizard-btn,
.info-btn,
.progress-dot {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.option-card:hover {
  border-color: rgba(85, 138, 198, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.option-card.selected {
  border-color: var(--accent);
  background: rgba(85, 138, 198, 0.15);
}

.option-card i {
  font-size: 1.5rem;
  color: var(--accent);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-hover);
}

.card-price {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Hours picker */
.hours-picker {
  text-align: center;
  margin-top: 0.5rem;
}

/* Quantity stepper */
.qty-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.qty-group {
  text-align: center;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.qty-btn {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-heading);
}

.qty-btn:hover {
  background: var(--accent);
  color: #fff;
}

.qty-value {
  min-width: 50px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-hover);
}

/* Toggle switch */
.toggle-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.toggle-row:last-child {
  border-bottom: none;
}

.toggle-label {
  flex: 1;
  font-size: 1rem;
}

.toggle-note {
  font-size: 0.85rem;
  opacity: 0.6;
  font-style: italic;
}

.toggle-price {
  font-size: 0.9rem;
  opacity: 0.7;
  min-width: 50px;
  text-align: right;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--text);
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
  background: #fff;
}

/* Quote summary table */
.quote-summary {
  margin-bottom: 1.5rem;
}

.quote-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.quote-table th {
  text-align: left;
  font-family: var(--font-heading);
  color: var(--accent);
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid rgba(85, 138, 198, 0.3);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-table th:last-child {
  text-align: right;
}

.quote-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.quote-table td:last-child {
  text-align: right;
  font-weight: 700;
}

.quote-total td {
  border-top: 2px solid var(--accent);
  border-bottom: none;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 0.75rem;
}

/* Discount code */
.discount-code-form {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.discount-code-row {
  display: flex;
  gap: 0.5rem;
  max-width: 360px;
  margin: 0 auto;
}

.discount-code-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: border-color 0.3s;
}

.discount-code-row input:focus {
  outline: none;
  border-color: var(--accent);
}

.discount-code-row input:disabled {
  opacity: 0.5;
}

.discount-apply-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.discount-apply-btn:disabled {
  opacity: 0.5;
  cursor: default;
  background: rgba(85, 138, 198, 0.4);
  transform: none;
}

.discount-status {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.4em;
}

.discount-status.success {
  color: #4caf50;
}

.discount-status.error {
  color: #e53935;
}

.discount-row td {
  color: #4caf50;
  font-style: italic;
}

/* Quote email form */
.quote-email-form {
  text-align: center;
}

.quote-email-fields {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.quote-email-fields input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.quote-email-fields input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Wizard navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

.wizard-btn {
  padding: 0.7rem 2rem;
  font-size: 0.9rem;
}

#wizard-prev {
  background: rgba(255, 255, 255, 0.1);
}

#wizard-prev:hover {
  background: rgba(255, 255, 255, 0.2);
}

#wizard-next {
  margin-left: auto;
}

/* Info button */
.info-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: rgba(85, 138, 198, 0.2);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  line-height: 1;
  margin-left: 0.5rem;
  box-shadow: 0 0 6px rgba(85, 138, 198, 0.3);
  animation: infoPulse 2s ease-in-out infinite;
}

@keyframes infoPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(85, 138, 198, 0.3); }
  50% { box-shadow: 0 0 12px rgba(85, 138, 198, 0.6); }
}

.info-btn:hover {
  border-color: #fff;
  color: #fff;
  background: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 0 14px rgba(85, 138, 198, 0.7);
  animation: none;
}

.option-card .info-btn {
  position: absolute;
  top: 6px;
  right: 6px;
}

.option-card {
  position: relative;
}

/* Info popup overlay */
.info-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.info-popup-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.info-popup {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}

.info-popup-overlay.open .info-popup {
  transform: translateY(0);
}

.info-popup-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-hover);
  margin-bottom: 0.75rem;
}

.info-popup-body {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  opacity: 0.85;
}

.info-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
}

.info-popup-close:hover {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .photo-grid {
    columns: 3 200px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 0.25rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }

  .logo-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .soundwave {
    width: 80px;
  }

  .logo-img {
    width: 160px;
  }

  .dj-text {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    columns: 2 150px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex: 1 1 100%;
  }

  /* Quote wizard mobile */
  .quote-wizard {
    padding: 1.25rem;
  }

  .wizard-progress {
    gap: 0;
  }

  .wizard-progress::before {
    left: 16px;
    right: 16px;
  }

  .dot-label {
    display: none;
  }

  .dot-number {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .option-cards {
    grid-template-columns: 1fr;
  }

  .qty-row {
    flex-direction: column;
    align-items: center;
  }

  .quote-email-fields {
    flex-direction: column;
  }

  .quote-table {
    font-size: 0.85rem;
  }

  .quote-table th,
  .quote-table td {
    padding: 0.4rem 0.5rem;
  }

  .wizard-step.active {
    min-height: 250px;
  }

  /* Disable parallax on mobile for performance */
  .section-bg {
    background-attachment: scroll;
  }
}
