/* ============================================
   CHAMELEON - Neo-Brutalist Design System
   Bold. Playful. High-energy.
   ============================================ */

/* Hide scrollbar on talent gallery */
#talentGallery::-webkit-scrollbar { display: none; }
#talentGallery { -ms-overflow-style: none; scrollbar-width: none; }

/* ---------- CSS Variables ---------- */
:root {
  --primary: #FF10F0;
  --primary-light: #FF44F4;
  --primary-dark: #CC0DC0;
  --accent: #00F0FF;
  --accent-light: #33F3FF;
  --accent-dark: #00C0CC;
  --dark: #E0E0E0;
  --darker: #0A0A0A;
  --light: #0A0A0A;
  --gray: #888888;
  --gray-light: #333333;
  --success: #39FF14;
  --danger: #FF3333;
  --neon-pink: #FF10F0;
  --neon-cyan: #00F0FF;
  --neon-green: #39FF14;
  --neon-yellow: #FFFF00;
  --neon-orange: #FF6600;
  --night: #0A0A0A;
  --surface: #111111;
  --gradient-primary: linear-gradient(135deg, #FF10F0, #00F0FF);
  --gradient-accent: linear-gradient(135deg, #00F0FF, #39FF14);
  --gradient-hero: #0A0A0A;
  --gradient-dark: #0A0A0A;
  --shadow-sm: 4px 4px 0px 0px #FF10F0;
  --shadow-md: 6px 6px 0px 0px #FF10F0;
  --shadow-lg: 8px 8px 0px 0px #FF10F0;
  --shadow-xl: 12px 12px 0px 0px #FF10F0;
  --shadow-purple: 8px 8px 0px 0px #FF10F0;
  --shadow-amber: 8px 8px 0px 0px #00F0FF;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --radius-2xl: 0px;
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #E0E0E0;
  background: #0A0A0A;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 3px 3px 0px #FF10F0;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #AAAAAA;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 4px solid black;
  transition: var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--neon-pink);
  color: black;
  border-color: black;
  box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
}

.btn-primary:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px 0px rgba(0,0,0,1);
}

.btn-accent {
  background: var(--neon-cyan);
  color: black;
  border-color: black;
  box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
}

.btn-accent:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px 0px rgba(0,0,0,1);
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 4px solid var(--neon-cyan);
  box-shadow: 6px 6px 0px 0px rgba(0,240,255,1);
}

.btn-outline:hover {
  background: var(--neon-cyan);
  color: black;
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px 0px rgba(0,240,255,1);
}

.btn-dark {
  background: black;
  color: var(--neon-cyan);
  border: 4px solid var(--neon-cyan);
  box-shadow: 4px 4px 0px 0px rgba(0,240,255,1);
}

.btn-dark:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px 0px rgba(0,240,255,1);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  border-width: 3px;
  box-shadow: 4px 4px 0px 0px rgba(0,0,0,1);
}

.btn-sm:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid var(--neon-cyan);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 0px 0px var(--neon-pink);
  border-bottom-color: var(--neon-pink);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  position: relative;
  padding: 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--neon-pink);
  transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a:hover {
  color: var(--neon-pink);
}

.navbar-links a.active {
  color: var(--neon-pink);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--neon-cyan);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-menu a:hover {
  color: var(--neon-pink);
  border-bottom-color: var(--neon-pink);
}

/* ---------- Hero Section ---------- */
.hero {
  background: #0A0A0A;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  border-bottom: 8px solid var(--neon-pink);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 49px, #FF10F0 49px, #FF10F0 51px),
                     repeating-linear-gradient(90deg, transparent, transparent 49px, #00F0FF 49px, #00F0FF 51px);
  opacity: 0.06;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,16,240,0.15), rgba(0,240,255,0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: black;
  border: 4px solid var(--neon-green);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1.5rem;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 6px 6px 0px 0px rgba(57,255,20,1);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 4px 4px 0px #FF10F0, 8px 8px 0px #00F0FF;
}

.hero-title .highlight {
  color: var(--neon-cyan);
  -webkit-text-fill-color: var(--neon-cyan);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero-description {
  font-size: 1.2rem;
  color: #CCCCCC;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  border-left: 6px solid var(--neon-yellow);
  padding-left: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* hero-stats removed — using stats-bar instead */

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 4px solid var(--neon-pink);
  overflow: hidden;
  box-shadow: 8px 8px 0px 0px rgba(255,16,240,1);
  transition: var(--transition);
}

.card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px 0px rgba(255,16,240,1);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid var(--neon-pink);
}

.card-body {
  padding: 1.5rem;
}

.card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Space Grotesk', sans-serif;
  border: 2px solid black;
}

.card-tag-purple {
  background: var(--neon-pink);
  color: black;
}

.card-tag-amber {
  background: var(--neon-cyan);
  color: black;
}

.card-tag-green {
  background: var(--neon-green);
  color: black;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.75rem 0 0.5rem;
  color: white;
}

.card-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ---------- Category Cards ---------- */
.category-card {
  background: var(--surface);
  padding: 2rem;
  text-align: center;
  border: 4px solid var(--gray-light);
  box-shadow: 6px 6px 0px 0px rgba(51,51,51,1);
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translate(-4px, -4px);
  border-color: var(--neon-pink);
  box-shadow: 10px 10px 0px 0px rgba(255,16,240,1);
}

.category-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  border: 4px solid black;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.category-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--surface);
  border: 4px solid var(--neon-cyan);
  padding: 2.5rem 3rem;
  box-shadow: 8px 8px 0px 0px rgba(0,240,255,1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: -4rem;
  position: relative;
  z-index: 10;
}

.stat-item {
  text-align: left;
  padding-left: 1.25rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neon-pink);
  -webkit-text-fill-color: var(--neon-pink);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 1px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--surface);
  border: 4px solid var(--neon-yellow);
  padding: 2rem;
  box-shadow: 8px 8px 0px 0px rgba(255,255,0,1);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--neon-pink);
  opacity: 0.5;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: var(--neon-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: 700;
  font-size: 1.1rem;
  border: 3px solid var(--neon-pink);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: #0A0A0A;
  padding: 5rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 8px solid var(--neon-cyan);
  border-bottom: 8px solid var(--neon-pink);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 49px, rgba(0,240,255,0.05) 49px, rgba(0,240,255,0.05) 51px);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.cta-text {
  font-size: 1.15rem;
  color: #AAAAAA;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--surface);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--neon-pink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--neon-pink);
  color: black;
  border-color: var(--neon-pink);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px 0px rgba(255,16,240,1);
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-col a:hover {
  color: var(--neon-cyan);
}

.footer-col li i {
  color: var(--neon-cyan);
  margin-right: 0.5rem;
  width: 1rem;
  text-align: center;
}

.footer-bottom {
  border-top: 2px solid var(--gray-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--neon-cyan);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 4px solid white;
  border-radius: 0px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #0A0A0A;
  color: white;
  box-shadow: 4px 4px 0px 0px rgba(255,255,255,1);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--neon-pink);
  box-shadow: 4px 4px 0px 0px rgba(255,16,240,1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #555555;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: #0A0A0A;
  color: white;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--surface);
  border: 4px solid var(--neon-pink);
  border-radius: 0px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 12px 12px 0px 0px rgba(255,16,240,1);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 4px solid var(--gray-light);
}

.modal-header h3 {
  font-size: 1.25rem;
  color: white;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 0px;
  border: 2px solid var(--neon-pink);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--neon-pink);
}

.modal-close:hover {
  background: var(--neon-pink);
  color: black;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 4px solid var(--gray-light);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* ---------- Toast Notifications ---------- */
.toast-container {
  position: fixed;
  top: 100px;
  right: 1.5rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--surface);
  border: 4px solid var(--neon-green);
  border-radius: 0px;
  padding: 1rem 1.5rem;
  box-shadow: 6px 6px 0px 0px rgba(57,255,20,1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  animation: toastIn 0.3s ease, toastOut 0.3s ease 3.7s forwards;
  color: white;
}

.toast.error {
  border-color: var(--danger);
  box-shadow: 6px 6px 0px 0px rgba(255,51,51,1);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100px); }
}

/* ---------- Loading Spinner ---------- */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-light);
  border-top-color: var(--neon-pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ---------- Grid Layouts ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-cta .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-cta {
    gap: 0.5rem;
  }

  .hero {
    min-height: auto;
    padding: 8rem 0 5rem;
  }

  .hero-title {
    font-size: 2.25rem;
    text-shadow: 3px 3px 0px #FF10F0;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-stat .number {
    font-size: 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
    margin-top: -2rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cta-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
    text-shadow: 2px 2px 0px #FF10F0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

/* ---------- Page-specific overrides ---------- */
.page-header {
  background: #0A0A0A;
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
  border-bottom: 8px solid var(--neon-pink);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 49px, rgba(255,16,240,0.05) 49px, rgba(255,16,240,0.05) 51px);
}

.page-header h1 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  text-shadow: 3px 3px 0px #FF10F0, 6px 6px 0px #00F0FF;
  position: relative;
}

.page-header p {
  font-size: 1.1rem;
  color: #AAAAAA;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

/* ---------- Star Rating ---------- */
.stars {
  color: var(--neon-yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 0px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Space Grotesk', sans-serif;
  border: 2px solid black;
}

.badge-available {
  background: var(--neon-green);
  color: black;
}

.badge-booked {
  background: var(--danger);
  color: white;
  border-color: var(--danger);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
  background: var(--neon-pink);
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}
