:root {
  --bg: #07111f;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: rgba(255, 255, 255, 0.95);
  --text: #11203d;
  --muted: #5d6b84;
  --primary: #ff4fa3;
  --secondary: #24c7ff;
  --accent: #ffd166;
  --border: rgba(17, 32, 61, 0.12);
  --shadow: 0 24px 60px rgba(5, 15, 35, 0.18);
}

:root[data-theme='dark'] {
  --bg: #030711;
  --panel: rgba(9, 17, 30, 0.9);
  --panel-strong: rgba(13, 23, 38, 0.95);
  --text: #edf6ff;
  --muted: #9fb2c9;
  --primary: #ff68b4;
  --secondary: #4dd7ff;
  --accent: #ffe08a;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, rgba(10, 20, 40, 0.98), rgba(38, 8, 52, 0.95));
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 15%, rgba(255,255,255,0.3) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 22% 80%, rgba(255,255,255,0.2) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 70% 78%, rgba(255,255,255,0.28) 0 2px, transparent 3px);
  background-size: 220px 220px, 180px 180px, 160px 160px, 240px 240px;
  animation: glitter 14s linear infinite;
  opacity: 0.75;
}

body::after {
  background: radial-gradient(circle at 20% 20%, rgba(255, 79, 163, 0.2), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(36, 199, 255, 0.2), transparent 24%),
    radial-gradient(circle at 60% 80%, rgba(255, 209, 102, 0.16), transparent 22%);
  animation: drift 18s ease-in-out infinite alternate;
}

.ambient-balloons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.balloon {
  position: absolute;
  display: block;
  width: 60px;
  height: 80px;
  border-radius: 999px 999px 999px 999px;
  opacity: 0.8;
  animation: balloon-float 8s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.balloon::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.65);
}

.balloon-one { top: 8%; left: 6%; background: linear-gradient(135deg, #ff73b8, #ffb1d9); }
.balloon-two { top: 18%; right: 10%; background: linear-gradient(135deg, #37d8ff, #aef3ff); animation-delay: -2.5s; }
.balloon-three { bottom: 12%; left: 20%; background: linear-gradient(135deg, #ffd166, #ffe8a1); animation-delay: -4.2s; }

main, .site-header, .footer {
  position: relative;
  z-index: 1;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.navbar { padding: 0.7rem 0; }
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 10px 24px rgba(255, 79, 163, 0.28);
  overflow: hidden;
}

.brand-badge img { width: 100%; height: 100%; object-fit: cover; }
.brand .title {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #fff;
}
.brand .tag { color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 500; }

.nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 600;
  margin: 0 0.15rem;
}
.nav-link:hover { color: #fff !important; }

.menu-toggle {
  border: 0;
  color: #fff;
  background: rgba(255,255,255,0.14);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: rgba(7, 17, 31, 0.96);
  z-index: 30;
  padding: 1.25rem;
  transition: right 0.3s ease;
  box-shadow: -12px 0 32px rgba(0,0,0,0.28);
}

.mobile-menu-panel.is-open { right: 0; }
.mobile-menu-panel .menu-close { background: transparent; color: #fff; border: 0; font-size: 1.75rem; }
.mobile-menu-panel a { display: block; color: #fff; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu-panel a:last-child { border-bottom: 0; }

.hero { padding: 3.25rem 0 2rem; }
.hero-card, .page-card, .gallery-card, .card, .stat-card, .info-card, .payment-card {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.hero-card { padding: 2rem; }

.contact-hero,
.package-hero,
.payment-hero {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(255,79,163,0.22), rgba(36,199,255,0.18));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 40px rgba(9, 17, 30, 0.18);
}

.contact-hero::before,
.package-hero::before,
.payment-hero::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -90px;
  background: rgba(255,209,102,0.24);
  border-radius: 50%;
  filter: blur(24px);
  animation: floatGlow 5.5s ease-in-out infinite;
}

.contact-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact-pill,
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 25, 45, 0.12);
}

.social-pill {
  background: rgba(7, 17, 31, 0.85);
  color: #fff;
}

.pulse-card {
  animation: breathe 4.4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(8px, 16px, 0) scale(1.06); }
}
.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero-title,
.page-title,
.section-title h2 {
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

.glitch-title {
  display: inline-block;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,209,102,0.95) 25%, rgba(255,79,163,0.95) 55%, rgba(36,199,255,0.95) 85%, rgba(255,255,255,0.98));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(255,255,255,0.16);
  animation: glitch 3.6s steps(2, end) infinite;
}

.hero-title .glitch-title::before,
.hero-title .glitch-title::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0.45;
}

.hero-title .glitch-title::before { transform: translate(-1px, 1px); color: var(--secondary); animation: glitch-shift 2.2s infinite; }
.hero-title .glitch-title::after { transform: translate(1px, -1px); color: var(--primary); animation: glitch-shift 2.4s reverse infinite; }

.hero-lead { color: rgba(255,255,255,0.92); font-size: 1.05rem; line-height: 1.75; max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.5rem; }
.primary-btn, .secondary-btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.primary-btn { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; box-shadow: 0 12px 24px rgba(36, 199, 255, 0.2); }
.secondary-btn { background: rgba(255,255,255,0.16); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.ghost-btn { background: rgba(255,255,255,0.75); color: var(--text); }
.primary-btn:hover, .secondary-btn:hover, .ghost-btn:hover { transform: translateY(-2px); }

.hero-visual { position: relative; }
.hero-visual img {
  border-radius: 26px;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow);
  animation: bob 5.5s ease-in-out infinite;
}

.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.stat-card { padding: 1rem; text-align: center; }
.stat-card strong { font-size: 1.1rem; color: var(--primary); }
.stat-card span { color: var(--muted); font-size: 0.9rem; }

.section-card { padding: 1.45rem; margin-bottom: 1.25rem; }
.section-title { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.section-title h2 { margin: 0; font-size: 1.3rem; color: #fff; }
.section-title a { color: #ffd166; font-weight: 700; }

.card, .page-card, .info-card, .payment-card, .stat-card {
  padding: 1.25rem;
  color: var(--text);
}
.card h3, .page-card h3 { margin-top: 0.2rem; margin-bottom: 0.7rem; }
.card-icon { font-size: 1.9rem; margin-bottom: 0.7rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-card { overflow: hidden; padding: 0.75rem; }
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card .caption { padding: 0.85rem 0.25rem 0.2rem; font-weight: 700; color: var(--text); }
.gallery-card .meta { padding: 0 0.25rem 0.3rem; color: var(--muted); font-size: 0.95rem; }

.map-card iframe { border: 0; border-radius: 18px; width: 100%; min-height: 280px; }

.list-check { padding-left: 1rem; color: var(--text); }
.list-check li { margin-bottom: 0.45rem; }

form label { display: block; font-weight: 600; margin-bottom: 0.35rem; color: var(--text); }
form input,
form select,
form textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  margin-bottom: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.68);
  color: var(--text);
}
form textarea { min-height: 120px; resize: vertical; }
.form-status { min-height: 1.5rem; color: var(--primary); font-weight: 600; margin-top: 0.6rem; }

.payment-steps .step-chip {
  padding: 0.75rem 0.9rem;
  background: rgba(255,255,255,0.68);
  border-radius: 999px;
  margin-bottom: 0.6rem;
  border: 1px solid var(--border);
}

.footer {
  padding: 2rem 0 1.5rem;
  color: rgba(255,255,255,0.86);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.footer a { color: #ffd166; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 14, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 40;
}
.modal.is-open { display: flex; }
.modal-content {
  position: relative;
  width: min(920px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.modal-content img { width: 100%; max-height: 78vh; object-fit: cover; border-radius: 18px; }
.close-modal {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  font-size: 1.4rem;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1px, -1px); }
  80% { transform: translate(1px, 1px); }
}

@keyframes glitch-shift {
  0%, 100% { clip-path: inset(0 0 0 0); }
  20% { clip-path: inset(20% 0 55% 0); }
  40% { clip-path: inset(10% 0 40% 0); }
  60% { clip-path: inset(65% 0 5% 0); }
  80% { clip-path: inset(25% 0 30% 0); }
}

@keyframes glitter {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

@keyframes drift {
  0% { transform: translate3d(-1%, -1.5%, 0); }
  100% { transform: translate3d(1.8%, 1.4%, 0); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes balloon-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(12px, -18px, 0) rotate(4deg); }
}

.direction-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.direction-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  color: var(--text);
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.4);
}

.gallery-card {
  position: relative;
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,79,163,0.16), rgba(36,199,255,0.14));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.gallery-card:hover::before,
.gallery-card:focus-within::before {
  opacity: 1;
}

@media (max-width: 991px) {
  .hero-card { margin-bottom: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px) {
  .hero { padding-top: 1.6rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 1.3rem; }
  .section-title { flex-direction: column; align-items: flex-start; }
  .direction-links { flex-direction: column; align-items: flex-start; }
}
