/* ============================================================
   LuxWave — Fire Performance Page
   ============================================================ */

/* ---- Hero ---- */
.fire-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.fire-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/IMG_4378_edited.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.fire-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 100%);
  z-index: 1;
}

.fire-hero-bg > * {
  z-index: 2;
}

.fire-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.fire-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #FF6B00, #FF3D00);
  top: -150px;
  left: -150px;
  opacity: 0.4;
  animation: drift-fire 14s ease-in-out infinite alternate;
}

.fire-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FF006E, #9D4EDD);
  bottom: -100px;
  right: 5%;
  opacity: 0.25;
  animation: drift-fire 18s ease-in-out infinite alternate-reverse;
}

.fire-orb--3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #FFD60A, #FF6B00);
  top: 30%;
  right: 20%;
  opacity: 0.15;
  animation: drift-fire 10s ease-in-out infinite alternate;
}

@keyframes drift-fire {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(25px, 15px) scale(1.1); }
}

.fire-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.fire-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.fire-hero-inner h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 0;
}

.fire-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 58ch;
  margin-bottom: 0.5rem;
}

.fire-hero-venues {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 55ch;
  margin-bottom: 2rem;
}

.fire-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Offers Grid ---- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Last row: 2 cards centered */
.offers-grid .offer-card:nth-child(4) {
  grid-column: 1 / 2;
}
.offers-grid .offer-card:nth-child(5) {
  grid-column: 2 / 3;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.offer-card:hover {
  border-color: rgba(255, 107, 0, 0.45);
  box-shadow: 0 8px 36px rgba(255, 61, 0, 0.12);
  transform: translateY(-3px);
}

.offer-card--featured {
  border-color: rgba(255, 107, 0, 0.3);
  background: linear-gradient(145deg, #161616, #1c0e05);
}

.offer-card--safety {
  border-color: rgba(0, 191, 255, 0.2);
}

.offer-card--safety:hover {
  border-color: rgba(0, 191, 255, 0.45);
  box-shadow: 0 8px 36px rgba(0, 191, 255, 0.1);
}

.offer-icon {
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.offer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.offer-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- Pricing ---- */
.fire-rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.fire-rate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.fire-rate-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 8px 36px rgba(255, 61, 0, 0.12);
  transform: translateY(-3px);
}

.fire-rate-card--main {
  border-color: rgba(255, 107, 0, 0.3);
  background: linear-gradient(145deg, #161616, #1c0e05);
}

.fire-rate-label {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.fire-rate-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.fire-rate-price {
  font-size: 1rem;
  color: var(--text-soft);
}

.fire-rate-price span {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--fire-start);
  display: block;
  line-height: 1.1;
}

.fire-pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-align: center;
}

.fire-pricing-note svg {
  flex-shrink: 0;
  color: var(--blue);
}

.fire-pricing-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 240px;
  transition: border-color var(--transition);
}

.gallery-placeholder:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.gallery-placeholder span {
  font-size: 2.5rem;
  opacity: 0.4;
}

.gallery-placeholder small {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* When real images are added: */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ---- Video ---- */
.video-wrap {
  max-width: 800px;
  margin-inline: auto;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--fire-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.4);
}

.video-placeholder p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 30ch;
  text-align: center;
  margin: 0;
}

/* When real iframe is added */
.video-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Testimonials ---- */
.fire-test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.fire-test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.fire-test-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 0 8px 30px rgba(255, 61, 0, 0.1);
}

.fire-test-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.fire-test-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--text-soft);
  max-width: none;
  flex: 1;
}

.fire-test-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fire-start);
}

/* ---- Bottom CTA ---- */
.fire-bottom-cta {
  position: relative;
  overflow: hidden;
}

.fire-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fire-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.fire-cta-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.22), transparent 70%);
  top: -100px;
  left: 5%;
}

.fire-cta-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,0,110,0.18), transparent 70%);
  bottom: -80px;
  right: 5%;
}

.fire-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 1rem;
  color: var(--text-soft);
}

.fire-cta-contact a {
  color: var(--text-soft);
  transition: color var(--transition);
}

.fire-cta-contact a:hover {
  color: var(--fire-start);
}

.fire-cta-sep {
  color: var(--text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers-grid .offer-card:nth-child(4),
  .offers-grid .offer-card:nth-child(5) {
    grid-column: auto;
  }

  .fire-rate-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

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

  .gallery-item--tall,
  .gallery-item--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .fire-test-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .fire-hero-inner {
    text-align: center;
  }

  .fire-hero-actions {
    justify-content: center;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

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