
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  background: linear-gradient(180deg, #1b0034 0%, #090a0f 100%);
  background-attachment: fixed;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(20, 0, 40, 0.8);
  border-radius: 20px;
  box-shadow: 0 0 15px #0ff;
}

main h2,
main h3,
main p,
main li {
  margin: 0 0 1rem;
}

main h3 {
  font-size: 1.8rem;
  color: #8be9ff;
  line-height: 1.05;
  text-shadow: 0 0 8px rgba(139, 233, 255, 0.45), 0 0 18px rgba(0, 170, 255, 0.18);
}

main section {
  margin-bottom: 1.75rem;
}

header {
  text-align: center;
  padding: 48px 20px 24px;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(4, 8, 28, 0.75), rgba(4, 8, 28, 0.5)), url("images/banner3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5), 0 0 20px #f0f;
}

.header-icon {
  width: clamp(180px, 26vw, 340px);
  height: auto;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px rgba(0,255,255,0.85));
  transition: transform 0.3s ease, filter 0.3s ease;
}

h1 {
  font-size: 3em;
  text-shadow: 0 0 10px #0ff, 0 0 20px #f0f;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* allows links to wrap on smaller screens */
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  box-shadow: 0 0 10px #0ff;
}

nav a {
  color: #0ff;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
  white-space: nowrap; /* prevents awkward word wrapping */
}

nav a:hover {
  color: #f0f;
  text-shadow: 0 0 10px #f0f;
}

/* 📱 Mobile responsiveness */
@media (max-width: 700px) {
  nav {
    flex-direction: column; /* stack links vertically */
    gap: 10px;
    padding: 10px;
  }

  nav a {
    margin: 8px 0;
    display: block;
    text-align: center;
    width: 100%;
    font-size: 1.1em;
  }
}



main {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(20, 0, 40, 0.8);
  border-radius: 20px;
  box-shadow: 0 0 15px #0ff;
}

section img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 0 10px #f0f;
}

footer {
  text-align: center;
  padding: 20px;
  color: #ccc;
  font-size: 0.9em;
}

.email-button {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: #9efc00;
  background-color: #0a0a0a;
  border: 2px solid #107c10;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #107c10aa;
}

.email-button:hover {
  background-color: #107c10;
  color: #0a0a0a;
  box-shadow: 0 0 20px #9efc00, 0 0 40px #107c10;
  transform: scale(1.05);
}

.footer-contact {
  text-align: center;
  padding: 20px;
  background: radial-gradient(circle at center, #0a0a0f, #020202);
  border-top: 2px solid #00ffff;
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  box-shadow: 0 0 20px #00ffff;
}

.email-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.1em;
  color: #ff00ff;
  text-decoration: none;
  background: rgba(255, 0, 255, 0.1);
  padding: 8px 16px;
  border: 1px solid #ff00ff;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.email-link:hover {
  background: #ff00ff;
  color: #fff;
  box-shadow: 0 0 20px #ff00ff;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.primary-button {
  background: #00ffcc;
  color: #000;
  border: 2px solid rgba(0, 255, 204, 0.8);
  box-shadow: 0 0 14px rgba(0, 255, 204, 0.25);
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.35);
}

.secondary-button {
  background: transparent;
  border: 2px solid #00ffcc;
  color: #00ffcc;
}

.secondary-button:hover {
  background: rgba(0, 255, 204, 0.08);
}

.hero-section {
  margin: 0 auto 2rem;
  padding: 2rem;
  max-width: 940px;
  background: rgba(0, 0, 0, 0.76);
  border: 1px solid rgba(0, 255, 204, 0.25);
  border-radius: 22px;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.12);
}

.hero-copy {
  max-width: 700px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9efc00;
}

.hero-section h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  color: #d6f8ff;
}

.hero-section p {
  font-size: 1rem;
  color: #d6f8ff;
  line-height: 1.75;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.stat-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 204, 0.18);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: #9efc00;
}

.stat-card span {
  color: #d6f8ff;
  display: block;
  margin-top: 0.55rem;
  line-height: 1.4;
}

.service-grid {
  margin: 0 auto 2rem;
  max-width: 940px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.feature-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00ffcc;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 0 14px rgba(0, 255, 204, 0.1);
}

.feature-card h4 {
  margin-top: 0;
  color: #00ffcc;
}

.feature-card p {
  color: #d9f1ff;
  line-height: 1.65;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 0 auto 2rem;
}

.faq-card {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid #00ffcc;
  border-radius: 18px;
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.08);
  padding: 1.2rem;
}

.faq-card h3 {
  margin-top: 0;
  color: #8be9ff;
}

.faq-card p {
  color: #d6f8ff;
  line-height: 1.7;
}

.issue-grid {
  display: grid;
  gap: 1rem;
  margin: 0 auto 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.issue-card {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid #00ffcc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.08);
  display: grid;
  grid-template-rows: auto 1fr;
}

.issue-card figure {
  margin: 0;
}

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

.issue-copy {
  padding: 1.25rem;
}

.issue-copy h3 {
  margin-top: 0;
  color: #8be9ff;
}

.issue-copy p {
  color: #d6f8ff;
  line-height: 1.7;
}

.process-section {
  margin: 0 auto 2rem;
  max-width: 940px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.process-step {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(0, 255, 204, 0.18);
  border-radius: 18px;
  padding: 1.2rem;
  min-height: 190px;
  display: grid;
  gap: 0.85rem;
}

.process-step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #00ffcc;
  color: #000;
  font-weight: 700;
}

.process-step h4 {
  margin: 0;
  color: #9efc00;
}

.process-step p {
  margin: 0;
  color: #d6f8ff;
  line-height: 1.6;
}

.before-after {
  margin: 0 auto 2rem;
  max-width: 940px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.before-after figure {
  margin: 0;
  border: 1px solid rgba(0, 255, 204, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.65);
}

.before-after figcaption {
  padding: 0.9rem 1rem;
  color: #d6f8ff;
  background: rgba(0, 0, 0, 0.78);
  font-size: 0.95rem;
}

.keep-alive-section {
  margin: 0 auto 2rem;
  max-width: 940px;
}

@media (max-width: 900px) {
  .hero-section,
  .service-grid,
  .process-section,
  .before-after,
  .keep-alive-section {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.survey-callout {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #0ff;
  border-radius: 12px;
  padding: 25px;
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 20px #0ff;
  color: #fff;
  transition: all 0.3s ease;
}

.survey-callout:hover {
  box-shadow: 0 0 25px #0ff, 0 0 40px #00f;
  transform: scale(1.02);
}

.page-intro {
  margin: 0 auto 2rem;
  padding: 1.5rem 1.2rem;
  max-width: 900px;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid #5f5cff;
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(95, 92, 255, 0.4);
}

.page-intro h2 {
  margin-top: 0;
  font-size: 2.2rem;
  color: #a5f0ff;
}

.page-intro p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

.request-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.info-card,
.note-box {
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.82);
  border: 2px solid rgba(0, 255, 255, 0.25);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.12);
}

.info-card h3,
.note-box h3 {
  margin-top: 0;
  color: #9efc00;
}

.info-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: #eee;
}

.info-card li {
  margin-bottom: 0.65rem;
}

.note-box p {
  margin: 0.8rem 0 0;
  line-height: 1.6;
  color: #cfdfff;
}

.form-frame {
  margin: 0 auto 2rem;
  padding: 0.85rem;
  max-width: 940px;
  background: rgba(0, 0, 0, 0.82);
  border: 2px solid #0ff;
  border-radius: 14px;
  box-shadow: 0 0 20px #0ff;
}

.form-frame h3,
.form-frame p {
  margin: 0 0 0.7rem;
  color: #fff;
}

.form-frame iframe {
  width: 100%;
  min-height: 1100px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0a0a;
}

.review-form iframe {
  min-height: 1320px;
}

.request-form iframe {
  min-height: 1500px;
}

@media (max-width: 900px) {
  .request-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-intro,
  .request-grid,
  .form-frame {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .form-frame {
    padding: 0.8rem;
  }

  .form-frame iframe {
    min-height: 1600px;
  }
}


@media (max-width: 768px) {
  .waitlist-form iframe,
  .form-embed iframe {
    min-height: 1800px;
  }
}

.survey-callout h3 {
  font-family: 'Orbitron', sans-serif;
  color: #0ff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #0ff;
}

.survey-callout p {
  color: #ccc;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.survey-button {
  display: inline-block;
  background: linear-gradient(90deg, #0ff, #0f0);
  color: #000;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #0ff;
}

.survey-button:hover {
  background: linear-gradient(90deg, #0f0, #0ff);
  box-shadow: 0 0 25px #0f0;
  transform: translateY(-2px);
}

.link-pulse {
  color: #b266ff; /* Clean dark purple text */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.link-pulse:hover {
  color: #d9b3ff; /* Slightly lighter purple on hover */
  text-shadow: 0 0 6px #d9b3ff, 0 0 10px #b266ff;
}

    /* Gallery Grid */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
      padding: 20px;
    }

    .gallery-grid img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border: 2px solid #0ff;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .gallery-grid img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px #0ff;
    }

    /* Lightbox Modal */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(5px);
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border: 3px solid #0ff;
      border-radius: 12px;
      box-shadow: 0 0 25px #0ff;
      animation: zoomIn 0.3s ease;
    }

    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .lightbox:target {
      display: flex;
    }

    .rescue-counter {
  text-align: center;
  margin: 60px auto;
  color: #0f0;
  font-family: 'Orbitron', sans-serif;
}

.rescue-counter h3 {
  font-size: 1.5em;
  color: #00ff99;
  text-shadow: 0 0 10px #00ff99;
  margin-bottom: 15px;
}

.counter-display {
  display: inline-block;
  font-size: 3em;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #00ff99;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px #00ff99;
  text-shadow: 0 0 10px #00ff99, 0 0 20px #0f0;
  animation: flickerDisplay 2s infinite alternate;
}

@keyframes flickerDisplay {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.8;
  }
}

/* === FLASHY TESTIMONIAL CARDS === */
.testimonial {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00ffcc;
  border-radius: 15px;
  padding: 20px;
  margin: 25px 0;
  box-shadow: 0 0 10px #00ffcc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #00ffcc;
}

.testimonial::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  background: repeating-linear-gradient(
    transparent,
    transparent 2px,
    rgba(0, 255, 204, 0.04) 3px
  );
  animation: scan 6s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% { top: -100%; }
  100% { top: 0%; }
}

.testimonial h3 {
  color: #00ffcc;
  text-shadow: 0 0 8px #00ffcc;
}

.stars {
  color: #00ffcc;
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.testimonials-section {
  margin: 45px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #00ffff;
  border-radius: 18px;
  box-shadow: 0 0 18px #00ffff;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.testimonial-slider .testimonial {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slider .testimonial.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-slider .testimonial h3 {
  margin-top: 0;
  color: #00ffcc;
}

.testimonial-slider .testimonial p {
  line-height: 1.7;
  color: #e6f7ff;
}

.testimonial-slider .testimonial .stars {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.testimonial-controls {
  text-align: center;
  margin-top: 12px;
}

.testimonial-controls button {
  cursor: pointer;
  border: 1px solid #00ffcc;
  background: rgba(0, 0, 0, 0.75);
  color: #00ffcc;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  margin: 0 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-controls button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 10px #00ffcc;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #007a63;
  border: 1px solid #00ffcc;
  cursor: pointer;
}

.dot.active {
  background: #00ffcc;
}

/* === MODS GRID === */
.mods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.mod-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00ffcc;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px #00ffcc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mod-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 25px #00ffcc;
}

.mod-card h3 {
  color: #00ffcc;
  text-shadow: 0 0 8px #00ffcc;
  margin-bottom: 10px;
}

.mod-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.mod-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 255, 204, 0.4);
  box-shadow: 0 0 8px rgba(0, 255, 204, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mod-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.8);
}

