@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --bg-0: #07040f;
  --bg-1: #0c081b;
  --bg-2: #120a24;
  --fg: #f8f4ff;
  --muted: rgba(248, 244, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(13, 10, 24, 0.75);
  --card-strong: rgba(18, 12, 32, 0.92);
  --pink: #ff2aa6;
  --blue: #34d5ff;
  --violet: #9d4edd;
  --hot: #ff6abf;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--fg);
  font-family: 'Sora', sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

body::before {
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(52, 213, 255, 0.12), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(157, 78, 221, 0.15), transparent 60%),
    radial-gradient(600px 500px at 50% 90%, rgba(255, 42, 166, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
}

body::after {
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

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

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

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.site-shell {
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 3, 12, 0.55);
  border-bottom: 1px solid var(--line);
}

.header .container {
  max-width: 1320px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}

.brand img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(255, 42, 166, 0.35));
}

.brand .title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand .title span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand .title strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex: 1;
  min-width: 0;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0 22px;
}

.mobile-menu.is-open {
  display: flex;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  transition: all 200ms ease;
  white-space: nowrap;
}

.nav-links a:hover {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(130deg, rgba(255, 42, 166, 0.25), rgba(52, 213, 255, 0.18));
  box-shadow: 0 0 40px rgba(255, 42, 166, 0.25);
  font-weight: 600;
  margin-left: 0;
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05) contrast(1.1) brightness(0.6);
}

.hero-video {
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 42, 166, 0.35), transparent 45%),
    radial-gradient(circle at 75% 25%, rgba(52, 213, 255, 0.3), transparent 40%),
    linear-gradient(180deg, rgba(6, 3, 14, 0.3), rgba(6, 3, 14, 0.85));
}

.hero-fog {
  position: absolute;
  inset: -10%;
  z-index: 3;
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.16), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.12), transparent 60%);
  filter: blur(26px);
  opacity: 0.5;
  animation: fogFloat 18s ease-in-out infinite;
}

.hero-beams::before,
.hero-beams::after {
  content: "";
  position: absolute;
  inset: -30% 0;
  z-index: 3;
  background: linear-gradient(110deg, transparent 20%, rgba(52, 213, 255, 0.2) 45%, transparent 70%);
  transform: translateX(-60%) skewX(-12deg);
  animation: beamSweep 14s ease-in-out infinite;
  opacity: 0.6;
}

.hero-beams::after {
  background: linear-gradient(120deg, transparent 30%, rgba(255, 42, 166, 0.2) 50%, transparent 70%);
  animation-delay: 2s;
}

.hero-bokeh span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 65%);
  opacity: 0.55;
  animation: bokehFloat 12s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 140px 0 120px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 7, 22, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  position: relative;
  overflow: hidden;
}

.hero-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #ff2aa6);
  box-shadow: 0 0 18px rgba(255, 42, 166, 0.8);
  animation: sparkle 2.8s ease-in-out infinite;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  letter-spacing: 0.12em;
  margin: 18px 0 12px;
  text-shadow: 0 0 30px rgba(255, 42, 166, 0.4);
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 200ms ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff, #ffd8f0);
  color: #0a0618;
  box-shadow: 0 0 40px rgba(255, 42, 166, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(255, 42, 166, 0.5);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.hero-micro {
  margin-top: 26px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.equalizer {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.equalizer span {
  width: 6px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #34d5ff, #9d4edd, #ff2aa6);
  animation: eqPulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 42, 166, 0.35);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  z-index: 4;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #ff2aa6);
  animation: dotPulse 2.2s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(255, 42, 166, 0.6);
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: 2.4rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 30px;
}

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

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

.glass-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(52, 213, 255, 0.12), transparent 55%, rgba(255, 42, 166, 0.12));
  opacity: 0.6;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 42, 166, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 50px rgba(255, 42, 166, 0.25);
}

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

button.chip {
  color: inherit;
  cursor: pointer;
}

.showreel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--card-strong);
  position: relative;
  overflow: hidden;
}

.showreel::after {
  content: "";
  position: absolute;
  inset: -50% -40% auto -40%;
  height: 120%;
  background: linear-gradient(130deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: skewX(-18deg);
  animation: sweep 9s ease-in-out infinite;
  opacity: 0.4;
  pointer-events: none;
}

.showreel video,
.showreel img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.wow-tile {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 5, 16, 0.8);
  min-height: 140px;
  position: relative;
  overflow: hidden;
}

.wow-tile::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% -30%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 42, 166, 0.25), transparent 65%);
  opacity: 0.6;
}

.wow-tile h4 {
  margin: 0 0 8px;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-card.is-popular {
  border-color: rgba(255, 42, 166, 0.6);
  box-shadow: 0 18px 60px rgba(255, 42, 166, 0.3);
}

.package-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  display: flex;
  gap: 6px;
  color: #ffd25a;
  letter-spacing: 0.08em;
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.about-image {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.final-cta {
  text-align: center;
  padding: 60px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at top left, rgba(255, 42, 166, 0.22), transparent 55%),
    radial-gradient(circle at top right, rgba(52, 213, 255, 0.2), transparent 55%),
    rgba(12, 8, 24, 0.85);
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 60px;
  margin-top: 60px;
}

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

.footer small {
  color: var(--muted);
}

.page-hero {
  padding: 120px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  font-size: clamp(2.2rem, 7vw, 4rem);
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.form-grid textarea {
  min-height: 140px;
}

.admin-shell {
  min-height: 100vh;
  padding: 40px 0 80px;
}

.admin-panel {
  background: rgba(11, 8, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 18px;
}

.admin-panel h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

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

.admin-actions button {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.form-status {
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(52, 213, 255, 0.12);
  color: #fff;
}

.form-status.is-error {
  background: rgba(255, 107, 128, 0.18);
  border-color: rgba(255, 107, 128, 0.4);
}

@keyframes fogFloat {
  0%, 100% { transform: translateX(0); opacity: 0.45; }
  50% { transform: translateX(2%); opacity: 0.65; }
}

@keyframes beamSweep {
  0% { transform: translateX(-90%) skewX(-12deg); }
  60% { transform: translateX(40%) skewX(-12deg); }
  100% { transform: translateX(140%) skewX(-12deg); }
}

@keyframes bokehFloat {
  0%, 100% { transform: translateY(0) scale(0.9); opacity: 0.35; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 0.75; }
}

@keyframes eqPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1.05); opacity: 1; }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 1; }
}

@keyframes sparkle {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

@keyframes sweep {
  0% { transform: translateX(-160%) skewX(-18deg); }
  55% { transform: translateX(160%) skewX(-18deg); }
  100% { transform: translateX(160%) skewX(-18deg); }
}

@media (max-width: 1440px) {
  .brand .title span {
    display: none;
  }
  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 1200px) {
  .brand .title strong {
    font-size: 0.9rem;
  }
  .nav-links a {
    font-size: 0.75rem;
    padding: 8px 10px;
    letter-spacing: 0.05em;
  }
  .nav-cta {
    padding: 8px 14px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .testimonial-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .showreel {
    grid-template-columns: 1fr;
  }
  .wow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    columns: 2;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-top: 120px;
  }
  .equalizer {
    display: none;
  }
  .gallery-grid {
    columns: 1;
  }
}

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