* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #020202;
  font-family: Arial, Helvetica, sans-serif;
}

.site {
  position: relative;
  width: 100%;
  max-width: 1792px;
  margin: 0 auto;
  background: #020202;
}

.design {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

/* FIX 1: This solid cover removes the old non-clickable background nav words */
.nav-cover {
  position: absolute;
  z-index: 24;
  left: 23.7%;
  top: 0.65%;
  width: 75.6%;
  height: 7.4%;
  background:
    linear-gradient(180deg, rgba(7,9,12,1) 0%, rgba(7,9,12,.98) 58%, rgba(7,9,12,.72) 83%, rgba(7,9,12,0) 100%);
  pointer-events: none;
}

.real-header {
  position: absolute;
  z-index: 30;
  left: 25.2%;
  top: 1.2%;
  width: 72.5%;
  height: 6.0%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 1.15%;
}

.real-nav {
  display: flex;
  gap: clamp(16px, 2vw, 36px);
  align-items: center;
  height: 45px;
}

.real-nav a {
  color: white;
  text-decoration: none;
  font-size: clamp(10px, .78vw, 15px);
  font-weight: 900;
  letter-spacing: .03em;
  position: relative;
  transition: color .18s ease, text-shadow .18s ease;
}

.real-nav a:hover,
.real-nav a.active {
  color: #ff2525;
  text-shadow: 0 0 13px rgba(255, 37, 37, .75);
}

.real-nav a:hover::after,
.real-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: #ff2525;
  box-shadow: 0 0 12px rgba(255, 37, 37, .9);
}

.real-top-quote {
  color: white;
  text-decoration: none;
  border: 1px solid #ff2525;
  border-radius: 5px;
  padding: 14px 21px;
  font-size: clamp(10px, .78vw, 15px);
  font-weight: 900;
  transition: background .18s ease, box-shadow .18s ease;
}

.real-top-quote:hover {
  background: #e50914;
  box-shadow: 0 0 22px rgba(229, 9, 20, .6);
}

/* Hero buttons */
.hero-button-cover {
  position: absolute;
  z-index: 22;
  left: 1.55%;
  top: 33.45%;
  width: 25.7%;
  height: 4.9%;
  background: rgba(7, 9, 12, .98);
  pointer-events: none;
}

.real-hero-buttons {
  position: absolute;
  z-index: 32;
  left: 1.85%;
  top: 33.75%;
  display: flex;
  gap: 16px;
}

.hero-btn {
  min-width: 172px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  text-decoration: none;
  border: 1px solid #ff2525;
  border-radius: 5px;
  background: rgba(0,0,0,.45);
  font-size: clamp(10px, .78vw, 14px);
  font-weight: 900;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.hero-btn:hover {
  background: #e50914;
  box-shadow: 0 0 26px rgba(229, 9, 20, .65);
  transform: translateY(-1px);
}

.hotspot {
  position: absolute;
  z-index: 10;
  display: block;
  background: transparent;
}

.card1 { left: 1.9%; top: 54.0%; width: 17.3%; height: 19.6%; }
.card2 { left: 20.5%; top: 54.0%; width: 17.3%; height: 19.6%; }
.card3 { left: 39.1%; top: 54.0%; width: 17.3%; height: 19.6%; }
.card4 { left: 57.7%; top: 54.0%; width: 17.3%; height: 19.6%; }
.card5 { left: 76.4%; top: 54.0%; width: 17.3%; height: 19.6%; }

.anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
}
.servicesAnchor { top: 46%; }
.packagesAnchor { top: 74%; }
.galleryAnchor { top: 74%; }
.aboutAnchor { top: 74%; }
.reviewsAnchor { top: 74%; }

/* FIX 3: Removes the entire old/fake quote section underneath */
.quote-area-cleanout {
  position: absolute;
  z-index: 31;
  left: 55.7%;
  top: 75.0%;
  width: 43.2%;
  height: 23.6%;
  background: #05070a;
  border-radius: 8px;
  pointer-events: none;
}

/* Clean quote box only */
.real-quote-box {
  position: absolute;
  z-index: 35;
  left: 56.8%;
  top: 76.1%;
  width: 41.3%;
  min-height: 21.8%;
  border: 1px solid rgba(229, 9, 20, .95);
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 0 30px rgba(229, 9, 20, .22);
  padding: 1.55% 2%;
  color: white;
}

.real-quote-box h2 {
  margin: 0 0 1.2%;
  font-size: clamp(24px, 2.4vw, 44px);
  letter-spacing: .08em;
  line-height: 1;
}

.real-quote-box h2 span {
  color: #ff2525;
}

.real-quote-box p {
  margin: 0 0 2.0%;
  color: #e6e6e6;
  font-size: clamp(10px, .9vw, 16px);
  font-weight: 700;
}

.real-quote-box form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.real-quote-box input,
.real-quote-box select {
  height: clamp(28px, 2.1vw, 38px);
  background: #07090c;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  padding: 0 12px;
  font-size: clamp(10px, .82vw, 14px);
  font-weight: 700;
  border-radius: 3px;
  outline: none;
}

.real-quote-box input::placeholder {
  color: #f1f1f1;
  opacity: 1;
}

.real-quote-box select {
  grid-column: 1 / -1;
  appearance: none;
}

.real-quote-box input:focus,
.real-quote-box select:focus {
  border-color: white;
  box-shadow: 0 0 0 2px rgba(229,9,20,.28);
}

.real-quote-box button {
  grid-column: 1 / -1;
  height: clamp(36px, 3vw, 54px);
  background: linear-gradient(135deg, #e50914, #ff2525);
  color: white;
  border: 0;
  border-radius: 4px;
  font-weight: 900;
  font-size: clamp(11px, .95vw, 16px);
  cursor: pointer;
  box-shadow: 0 0 18px rgba(229,9,20,.35);
}

.real-quote-box button:hover {
  box-shadow: 0 0 28px rgba(229,9,20,.7);
  filter: brightness(1.08);
}

.real-quote-box .email {
  display: inline-block;
  margin-top: 2.0%;
  color: white;
  text-decoration: none;
  font-size: clamp(10px, .9vw, 15px);
}

@media (max-width: 900px) {
  .site {
    width: 1400px;
    max-width: none;
  }

  body {
    overflow-x: auto;
  }

  .real-nav {
    gap: 20px;
  }

  .hero-btn {
    min-width: 150px;
  }
}
