:root {
  --bg: #070b14;
  --bg-alt: #0e1627;
  --text: #eef3ff;
  --muted: #b4bfd7;
  --line: rgba(178, 197, 255, 0.25);
  --card: rgba(18, 29, 53, 0.66);
  --accent: #8dc2ff;
  --accent-2: #85ffe0;
  --danger: #ff9696;
  --shadow-soft: 0 12px 32px rgba(2, 8, 22, 0.28);
  --shadow-strong: 0 20px 42px rgba(2, 8, 22, 0.42);
}

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

body {
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, #11203d 0%, var(--bg) 45%, #05080f 100%);
  min-height: 100vh;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3rem;
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #000;
  z-index: 20;
}

.skip-link:focus {
  top: 0.5rem;
}

.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.35;
  animation: float 14s ease-in-out infinite;
}

.orb-1 {
  top: -8rem;
  left: -8rem;
  background: #4aa3ff;
}

.orb-2 {
  bottom: -12rem;
  right: -8rem;
  background: #64ffd8;
  animation-delay: -6s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 95%);
}

#main {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 2.25rem 0 4.5rem;
}

.intro-page #main {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms ease, transform 700ms ease;
}

#main.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(9, 15, 29, 0.72);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 0.8rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.brand img {
  display: block;
  width: auto;
  height: 54px;
  max-width: min(46vw, 240px);
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(79, 123, 255, 0.25));
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(141, 194, 255, 0.12);
}

.nav-links a[aria-current="page"] {
  color: var(--accent-2);
}

.hero,
.section {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--card);
  backdrop-filter: blur(10px);
  padding: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.hero {
  background:
    linear-gradient(170deg, rgba(141, 194, 255, 0.08), transparent 45%),
    var(--card);
}

.badge,
.kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.85rem;
}

.hero h1,
.hero h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  max-width: 22ch;
  margin-bottom: 0.9rem;
}

.hero-copy {
  color: var(--muted);
  max-width: 68ch;
  margin-bottom: 1.4rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.main-cta,
.secondary-cta,
button.main-cta {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.main-cta {
  color: #04111f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.secondary-cta {
  color: var(--text);
  border: 1px solid var(--line);
}

.main-cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.secondary-cta:hover {
  border-color: rgba(141, 194, 255, 0.5);
}

.main-cta:focus-visible,
.secondary-cta:focus-visible,
.nav-links a:focus-visible,
.booking-form input:focus-visible,
.booking-form textarea:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

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

.card {
  border: 1px solid rgba(176, 198, 255, 0.2);
  background: rgba(7, 12, 22, 0.55);
  border-radius: 0.95rem;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(133, 255, 224, 0.48);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.price-tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.2rem 0.58rem;
  border: 1px solid rgba(133, 255, 224, 0.35);
  border-radius: 999px;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.card-meta {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--text);
}

.card p,
.section p,
.section li,
figcaption {
  color: var(--muted);
}

.card ul,
.section ul {
  padding-left: 1.1rem;
  margin-top: 0.6rem;
}

.card li,
.section li {
  margin-bottom: 0.25rem;
}

.card .main-cta {
  margin-top: auto;
  align-self: flex-start;
}

.split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.about-intro {
  grid-template-columns: 1.4fr 1fr;
}

.media-frame {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
  background: rgba(7, 12, 22, 0.55);
}

.media-frame img {
  width: 100%;
  display: block;
}

.media-frame figcaption {
  padding: 0.6rem 0.8rem;
  font-size: 0.92rem;
}

.floaty {
  animation: float 8s ease-in-out infinite;
}

.pulse {
  animation: pulse 3.4s ease-in-out infinite;
}

.contact {
  text-align: center;
}

.contact h3 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  margin-bottom: 0.4rem;
}

.contact p {
  margin-bottom: 1rem;
}

.booking-form {
  text-align: left;
  margin: 0 auto 0.8rem;
  max-width: 780px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.booking-form label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  background: rgba(7, 12, 22, 0.8);
  color: var(--text);
  padding: 0.7rem;
  margin-top: 0.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:hover,
.booking-form textarea:hover {
  border-color: rgba(141, 194, 255, 0.5);
}

.helper-text {
  min-height: 1.2rem;
  color: var(--accent-2);
  margin-bottom: 0.6rem;
}

.helper-text.is-error {
  color: var(--danger);
}

#intro {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, #0f1d35 0%, #050914 55%, #03050c 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 9;
}

.intro-door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(145deg, rgba(16, 27, 48, 0.82), rgba(5, 9, 18, 0.95));
  border-right: 1px solid rgba(141, 194, 255, 0.2);
  box-shadow: inset 0 0 24px rgba(141, 194, 255, 0.1);
}

.intro-left {
  left: 0;
  animation: open-left 900ms 650ms ease forwards;
}

.intro-right {
  right: 0;
  transform-origin: right center;
  border-right: 0;
  border-left: 1px solid rgba(133, 255, 224, 0.2);
  animation: open-right 900ms 650ms ease forwards;
}

.scan-line {
  position: absolute;
  left: -15%;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(141, 194, 255, 0.25), transparent);
  filter: blur(3px);
  animation: scan 1400ms ease-in-out forwards;
}

.intro-content {
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  animation: intro-in 0.8s ease forwards;
}

.intro-kicker {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.73rem;
}

.intro-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.intro-sub {
  color: var(--muted);
}

@keyframes intro-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(16px, -12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(133, 255, 224, 0.1);
  }
  50% {
    box-shadow: 0 0 22px rgba(133, 255, 224, 0.22);
  }
}

@keyframes scan {
  0% {
    transform: translateX(0);
    opacity: 0.25;
  }
  40% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(420%);
    opacity: 0;
  }
}

@keyframes open-left {
  to {
    transform: translateX(-105%);
    opacity: 0;
  }
}

@keyframes open-right {
  to {
    transform: translateX(105%);
    opacity: 0;
  }
}

@media (max-width: 800px) {
  .split,
  .about-intro,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem;
  }

  .nav-links {
    width: 100%;
    gap: 0.45rem;
  }

  .nav-links a {
    padding: 0.45rem 0.65rem;
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 1.5rem));
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(7, 12, 22, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 30;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner .main-cta {
  white-space: nowrap;
}

@media (max-width: 640px) {
  #main {
    width: min(1100px, 94%);
    padding-top: 1.25rem;
  }

  .hero,
  .section {
    padding: 1.25rem;
    border-radius: 1rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


.card-link {
  color: var(--text);
  text-decoration: none;
}

.card-link:hover {
  color: var(--accent-2);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: #25d366;
  color: #04111f;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-strong);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.trust-grid .card {
  text-align: center;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
  }
}

.booking-form select {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  background: rgba(7, 12, 22, 0.8);
  color: var(--text);
  padding: 0.7rem;
  margin-top: 0.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form select:hover {
  border-color: rgba(141, 194, 255, 0.5);
}

.main-cta:focus-visible,
.secondary-cta:focus-visible,
.nav-links a:focus-visible,
.booking-form input:focus-visible,
.booking-form textarea:focus-visible,
.booking-form select:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}


.site-footer {
  width: min(1100px, 92%);
  margin: 0 auto 2rem;
  padding: 1.4rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(9, 15, 29, 0.72);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.2rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(178, 197, 255, 0.18);
}

.footer-brand {
  font-weight: 600;
  color: var(--text);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(141, 194, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-grid section {
  padding-bottom: 0;
  border-bottom: none;
}

.footer-grid section:last-child {
  justify-self: end;
  text-align: right;
}

.footer-grid h3 {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.footer-grid a {
  font-weight: 500;
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--accent-2);
}

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

  .footer-grid section {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(178, 197, 255, 0.18);
  }

  .footer-grid section:last-child {
    padding-bottom: 0;
    border-bottom: none;
    justify-self: auto;
    text-align: left;
  }
}
