:root {
  --bg: #050c0a;
  --bg-alt: #0c1c16;
  --card: rgba(12, 28, 22, 0.75);
  --muted: #b6d2c6;
  --text: #f7fffb;
  --accent: #00d89a;
  --accent-soft: rgba(0, 216, 154, 0.18);
  --white: #ffffff;
  --shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --scroll-y: 0px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, #0b1f19, var(--bg) 45%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

header,
main,
footer {
  position: relative;
  z-index: 2;
}

.fx-layer {
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
}

.fx-blobs {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 216, 154, 0.22), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(0, 174, 255, 0.18), transparent 35%),
    radial-gradient(circle at 45% 75%, rgba(255, 140, 0, 0.14), transparent 40%);
  filter: blur(8px);
  animation: blobsFloat 16s ease-in-out infinite alternate;
}

.fx-noise {
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 2px
    );
  opacity: 0.2;
  mix-blend-mode: soft-light;
  animation: noiseShift 1.8s steps(2) infinite;
}

.fx-scan {
  background:
    linear-gradient(
      180deg,
      rgba(0, 216, 154, 0.12),
      rgba(0, 216, 154, 0),
      rgba(0, 216, 154, 0.08)
    );
  opacity: 0.55;
  animation: scanSweep 6s linear infinite;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
}

body::before {
  z-index: -6;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 216, 154, 0.2), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(33, 241, 176, 0.16), transparent 40%),
    radial-gradient(circle at 45% 80%, rgba(0, 140, 255, 0.12), transparent 45%);
  filter: blur(30px);
  animation: auroraShift 22s ease-in-out infinite alternate;
}

body::after {
  z-index: -5;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(0, 216, 154, 0.2) 1px, transparent 1.5px);
  background-size: 140px 140px, 200px 200px;
  background-position: 0 0, 60px 100px;
  opacity: 0.28;
  animation: sparkleDrift 26s linear infinite;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: -2;
  animation: float 18s ease-in-out infinite, orbPulse 10s ease-in-out infinite;
}

.orb-1 {
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, #00d89a 0%, rgba(0, 216, 154, 0) 70%);
  animation-delay: -4s;
}

.orb-2 {
  bottom: -140px;
  left: -140px;
  background: radial-gradient(circle, #21f1b0 0%, rgba(33, 241, 176, 0) 70%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  z-index: -3;
  opacity: 0.28;
  transform: translateY(calc(var(--scroll-y) * -0.08));
  transition: transform 0.2s ease-out, opacity 0.4s ease;
  animation: gridPulse 8s ease-in-out infinite;
}

.bg-media {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-media::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 0deg, rgba(0, 216, 154, 0.18), rgba(0, 174, 255, 0.2), rgba(0, 216, 154, 0.18)),
    radial-gradient(circle at 15% 70%, rgba(255, 0, 90, 0.14), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255, 220, 0, 0.14), transparent 35%);
  filter: blur(10px);
  animation: mediaSpin 24s linear infinite;
}

.bg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 120px
    );
  opacity: 0.8;
  animation: mediaSweep 14s linear infinite;
}

.media-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  color: rgba(247, 255, 251, 0.98);
  font-size: 0.82rem;
  letter-spacing: 1px;
  font-weight: 700;
  animation: chipFloat 9s ease-in-out infinite;
  font-size: 0;
  color: transparent;
  letter-spacing: 0;
}

.chip-1 { top: 12%; left: 7%; animation-delay: -1s; }
.chip-2 { top: 20%; right: 8%; animation-delay: -2s; }
.chip-3 { top: 44%; left: 4%; animation-delay: -4s; }
.chip-4 { top: 58%; right: 10%; animation-delay: -5s; }
.chip-5 { bottom: 24%; left: 11%; animation-delay: -3s; }
.chip-6 { bottom: 13%; right: 18%; animation-delay: -6s; }
.chip-7 { top: 72%; left: 44%; animation-delay: -7s; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 12, 10, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideDown 0.8s ease both;
  transition: transform 0.4s ease, background 0.4s ease;
}

body.nav-hidden .site-header {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand img {
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: transparent;
  padding: 0;
  transition: transform 0.4s ease;
  box-shadow: none;
}

.brand:hover img {
  transform: rotate(-3deg) scale(1.05);
}

.nav {
  gap: 20px;
}

@media (max-width: 900px) {
  .brand img {
    width: 64px;
    height: 64px;
  }
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  padding-bottom: 6px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00d89a, #00b987);
  color: #03130f;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 18px 40px rgba(0, 216, 154, 0.25);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.hero {
  padding: 130px 0 90px;
}

.hero.inner {
  padding: 100px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  margin-bottom: 14px;
}

.sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 600;
}

.lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: linear-gradient(160deg, rgba(0, 216, 154, 0.22), rgba(12, 28, 22, 0.95));
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: pulseGlow 5.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 216, 154, 0.2);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.hero-metrics span {
  font-size: 1.4rem;
  font-weight: 700;
}

.section {
  padding: 90px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
}

.section-head p {
  color: var(--muted);
  max-width: 520px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.35);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card {
  position: relative;
  overflow: hidden;
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #d8efe5;
}

.card.highlight {
  background: linear-gradient(150deg, rgba(0, 216, 154, 0.24), rgba(12, 28, 22, 0.95));
}

.clients {
  background: linear-gradient(150deg, rgba(12, 28, 22, 0.9), rgba(5, 12, 10, 0.9));
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
  opacity: 0.9;
}

.logo-wall img {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-wall img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.leadership {
  background: linear-gradient(120deg, rgba(0, 216, 154, 0.1), transparent 50%);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
  align-items: center;
}

.leadership-photo img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 560px;
  width: 100%;
  box-shadow: var(--shadow);
  animation: floatSmall 10s ease-in-out infinite;
}

.leadership-copy h3 {
  margin-top: 8px;
}

.role {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.process .timeline {
  display: grid;
  gap: 20px;
}

.step {
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step span {
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}


.stats {
  background: var(--bg-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--card);
  text-align: center;
  transition: transform 0.4s ease;
}

.stat:hover {
  transform: translateY(-8px) scale(1.01);
}

.stat span {
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
}

.cta {
  padding-bottom: 120px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  background: linear-gradient(135deg, rgba(0, 216, 154, 0.3), rgba(12, 28, 22, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.socials a {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  background: rgba(0, 216, 154, 0.2);
  transform: translateY(-2px);
}

.socials.big a {
  padding: 12px 18px;
}

.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 12, 10, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 16px;
}

.footer-grid a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  text-align: center;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  filter: blur(6px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  filter: blur(6px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

.reveal-stagger > *.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(24px);
  }
}

@keyframes floatSmall {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
}

@keyframes orbPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.08);
  }
}

@keyframes auroraShift {
  0% {
    transform: translate3d(-2%, -2%, 0) scale(1);
  }
  50% {
    transform: translate3d(3%, 1%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-1%, 3%, 0) scale(1.04);
  }
}

@keyframes sparkleDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-120px, -80px, 0);
  }
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.34;
  }
}

@keyframes mediaSpin {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.06);
  }
}

@keyframes mediaSweep {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-120px);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translateY(-18px) scale(1.08);
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 30px 80px rgba(0, 216, 154, 0.25);
  }
  50% {
    box-shadow: 0 45px 110px rgba(0, 216, 154, 0.5);
  }
}

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

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

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .leadership-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .media-chip {
    font-size: 0.62rem;
    padding: 6px 10px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 0 70px;
  }

  .section {
    padding: 70px 0;
  }

  .card {
    padding: 22px;
  }
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.booking-panel {
  display: grid;
  gap: 16px;
}

.calendar-shell {
  display: grid;
  gap: 16px;
}

.date-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 12, 10, 0.7);
  color: var(--text);
  font-size: 1rem;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.slot {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.slot:hover,
.slot.active {
  background: rgba(0, 216, 154, 0.2);
  border-color: rgba(0, 216, 154, 0.7);
  transform: translateY(-2px);
}

.slot.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 12, 10, 0.7);
  color: var(--text);
  font-size: 1rem;
}

.booking-status {
  font-size: 0.95rem;
  color: var(--accent);
  min-height: 1.2em;
}

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

.booking-simple {
  display: grid;
  gap: 20px;
}

.booking-card {
  display: grid;
  gap: 22px;
  padding: 30px;
  background: linear-gradient(160deg, rgba(0, 216, 154, 0.18), rgba(12, 28, 22, 0.95));
}

.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  color: var(--muted);
}

.booking-row {
  display: grid;
  gap: 14px;
}

.booking-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.booking-form label {
  color: var(--muted);
}

.booking-status {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 700px) {
  .booking-row.two {
    grid-template-columns: 1fr;
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 216, 154, 0.2), rgba(5, 12, 10, 0.95));
  display: grid;
  place-items: center;
  gap: 16px;
  z-index: 999;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--accent);
  animation: spin 1.1s linear infinite;
}

.loader-logo {
  width: 70px;
  height: 70px;
  animation: spinSlow 2.4s linear infinite;
}

.click-sparkle {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(0, 216, 154, 0.4));
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: sparklePop 0.9s ease forwards;
  z-index: 999;
}

@keyframes sparklePop {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -120%) scale(2.2);
    opacity: 0;
  }
}

@keyframes blobsFloat {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, 1%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-1%, 2%, 0) scale(1.04);
  }
}

@keyframes noiseShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2%, 1%, 0);
  }
}

@keyframes scanSweep {
  0% {
    transform: translateY(-120%);
  }
  100% {
    transform: translateY(120%);
  }
}

.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
      200px 200px at var(--x, 50%) var(--y, 50%),
      rgba(0, 216, 154, 0.18),
      transparent 60%
    ),
    radial-gradient(
      280px 280px at var(--x, 50%) var(--y, 50%),
      rgba(0, 140, 255, 0.12),
      transparent 70%
    );
  mix-blend-mode: screen;
  transition: background 0.15s ease;
}

body.fire .cursor-glow {
  background: radial-gradient(
      220px 220px at var(--x, 50%) var(--y, 50%),
      rgba(255, 120, 0, 0.2),
      transparent 60%
    ),
    radial-gradient(
      320px 320px at var(--x, 50%) var(--y, 50%),
      rgba(255, 200, 0, 0.12),
      transparent 70%
    );
}

.fire-embers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.fire .fire-embers {
  opacity: 1;
}

.fire-embers span {
  position: absolute;
  bottom: -10%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.9), rgba(255, 80, 0, 0.4));
  filter: blur(0.5px);
  animation-name: emberRise;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

@keyframes emberRise {
  0% {
    transform: translateY(0) scale(0.6);
    opacity: 0.2;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(1.4);
    opacity: 0;
  }
}

.calendar {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(5, 12, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cal-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease, border 0.3s ease;
}

.cal-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 216, 154, 0.6);
}

.cal-weekdays,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  text-align: center;
}

.cal-weekdays span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cal-day {
  padding: 10px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.cal-day:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 216, 154, 0.5);
}

.cal-day.selected {
  background: rgba(0, 216, 154, 0.25);
  border-color: rgba(0, 216, 154, 0.9);
  color: var(--text);
}

.cal-day.today {
  border-color: rgba(255, 255, 255, 0.4);
}

.cal-day.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cal-selected {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

body.party {
  animation: partyHue 6s linear infinite;
}

body.party::before {
  filter: blur(18px) saturate(1.3);
}

@keyframes partyHue {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* Flashy visual pass */
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 216, 154, 0.22), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(0, 174, 255, 0.18), transparent 35%),
    radial-gradient(circle at 50% 92%, rgba(183, 255, 0, 0.12), transparent 40%),
    radial-gradient(circle at top, #0b1f19, var(--bg) 45%),
    var(--bg);
}

h1,
h2 {
  text-shadow: 0 8px 30px rgba(0, 216, 154, 0.22);
}

.site-header {
  background: rgba(5, 12, 10, 0.62);
  border-bottom: 1px solid rgba(0, 216, 154, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  background: linear-gradient(115deg, #f7fffb 10%, #b6fff0 42%, #7dffd8 78%, #f7fffb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  box-shadow: 0 20px 45px rgba(0, 216, 154, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn.ghost {
  border-color: rgba(0, 216, 154, 0.45);
  background: rgba(0, 216, 154, 0.08);
}

.card,
.step,
.stat,
.cta-card,
.hero-card,
.calendar,
.booking-card {
  border-color: rgba(0, 216, 154, 0.3);
}

.card:hover,
.step:hover,
.stat:hover {
  box-shadow: 0 30px 70px rgba(0, 216, 154, 0.18), 0 18px 35px rgba(0, 0, 0, 0.3);
}

.logo-wall a {
  display: block;
}

.logo-wall img {
  filter: saturate(1.15) contrast(1.08);
}

.logo-wall img:hover {
  transform: translateY(-8px) scale(1.05) rotate(-1deg);
  box-shadow: 0 20px 50px rgba(0, 216, 154, 0.25);
}

.cta-card {
  animation: ctaPulse 4s ease-in-out infinite;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(0, 216, 154, 1), rgba(33, 241, 176, 0.1));
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 24px 60px rgba(0, 216, 154, 0.2), 0 20px 35px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 32px 80px rgba(0, 216, 154, 0.34), 0 24px 45px rgba(0, 0, 0, 0.32);
  }
}
