/* =============================================
   Prairie Bounce & Slide — Complete Stylesheet
   Dark Neon Aesthetic
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --bg-primary: #08080f;
  --bg-secondary: #0d0d1a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);

  --neon-purple: #b44dff;
  --neon-purple-glow: rgba(180, 77, 255, 0.4);
  --neon-pink: #ff2dce;
  --neon-pink-glow: rgba(255, 45, 206, 0.4);
  --neon-cyan: #00d4ff;
  --neon-cyan-glow: rgba(0, 212, 255, 0.4);
  --neon-yellow: #ffd700;
  --neon-yellow-glow: rgba(255, 215, 0, 0.4);
  --neon-green: #39ff14;
  --neon-green-glow: rgba(57, 255, 20, 0.3);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow-purple: rgba(180, 77, 255, 0.35);
  --border-glow-cyan: rgba(0, 212, 255, 0.35);

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --nav-height: 80px;
  --container-max: 1200px;
  --section-padding: 100px 0;
  --border-radius: 16px;
  --border-radius-sm: 8px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--neon-purple); border-radius: 3px; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 20px var(--neon-purple-glow), 0 4px 15px rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--neon-purple-glow), 0 8px 25px rgba(0,0,0,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-cyan-glow);
  transform: translateY(-3px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* --- Section Shared --- */
section { padding: var(--section-padding); position: relative; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(180, 77, 255, 0.12);
  border: 1px solid rgba(180, 77, 255, 0.35);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon-purple);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.section-desc {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.neon-purple { color: var(--neon-purple); text-shadow: 0 0 20px var(--neon-purple-glow); }
.neon-cyan   { color: var(--neon-cyan);   text-shadow: 0 0 20px var(--neon-cyan-glow); }
.neon-pink   { color: var(--neon-pink);   text-shadow: 0 0 20px var(--neon-pink-glow); }
.neon-yellow { color: var(--neon-yellow); text-shadow: 0 0 20px var(--neon-yellow-glow); }

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 8, 15, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 28px;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 4px;
  color: var(--neon-purple);
  text-shadow: 0 0 20px var(--neon-purple-glow);
  white-space: nowrap;
  line-height: 1;
}

.logo-sub { display: none; }

.nav-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(180,77,255,0.35));
  transition: opacity 0.3s ease;
}

.nav-logo:hover .nav-logo-img { opacity: 1; }

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.hamburger {
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.nav-links a {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav-links a:hover { color: white; background: rgba(255,255,255,0.06); }

.nav-links .nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: white !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px var(--neon-purple-glow);
}

.nav-links .nav-cta:hover {
  box-shadow: 0 0 30px var(--neon-purple-glow);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple)) !important;
}

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

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(8, 8, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow-purple);
  z-index: 999;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--text-secondary);
}

.mobile-menu a:hover { color: white; background: rgba(255,255,255,0.06); }

.hero-color-text {
  display: block;
  transition: color 0.08s ease, text-shadow 0.08s ease;
}

@keyframes titleColorCycle {
  0%   { color: #ffffff; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
  16%  { color: #b44dff; text-shadow: 0 0 30px rgba(180,77,255,0.7); }
  32%  { color: #00d4ff; text-shadow: 0 0 30px rgba(0,212,255,0.7); }
  50%  { color: #ff2dce; text-shadow: 0 0 30px rgba(255,45,206,0.7); }
  66%  { color: #ffd700; text-shadow: 0 0 30px rgba(255,215,0,0.6); }
  82%  { color: #39ff14; text-shadow: 0 0 30px rgba(57,255,20,0.5); }
  100% { color: #ffffff; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
}

.hero-title:hover .hero-color-text {
  animation: titleColorCycle 2.5s linear infinite;
}

.hero-title { cursor: default; }

/* ============================================
   HERO — TWO COLUMN WRAPPER
   ============================================ */
#home {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(180, 77, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(0, 212, 255, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 85%, rgba(255, 45, 206, 0.09) 0%, transparent 50%),
    var(--bg-primary);
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 20px) 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-logo-panel {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-logo {
  width: clamp(270px, 33vw, 430px);
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.6)) drop-shadow(0 0 30px rgba(180,77,255,0.1));
  animation: heroLogoFloat 5s ease-in-out infinite;
  border-radius: 12px;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  text-align: left;
  padding: 0;
}


.hero-badge {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.glow-text {
  display: block;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(180, 77, 255, 0.45));
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neon-yellow);
  text-shadow: 0 0 25px var(--neon-yellow-glow);
  margin-bottom: 44px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s ease 0.62s both;
}

.hero-trust {
  display: flex;
  gap: 28px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.75s both;
}

.hero-trust span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: fadeIn 1s ease 1.4s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--neon-purple), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services { background: var(--bg-secondary); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-color, var(--neon-purple)), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  background: radial-gradient(circle at top left, var(--card-glow, rgba(180,77,255,0.06)), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card[data-color="purple"] { --card-color: var(--neon-purple); --card-glow: rgba(180,77,255,0.08); --card-border: rgba(180,77,255,0.4); }
.service-card[data-color="cyan"]   { --card-color: var(--neon-cyan);   --card-glow: rgba(0,212,255,0.08);  --card-border: rgba(0,212,255,0.4); }
.service-card[data-color="pink"]   { --card-color: var(--neon-pink);   --card-glow: rgba(255,45,206,0.08); --card-border: rgba(255,45,206,0.4); }
.service-card[data-color="yellow"] { --card-color: var(--neon-yellow); --card-glow: rgba(255,215,0,0.07);  --card-border: rgba(255,215,0,0.4); }
.service-card[data-color="green"]  { --card-color: var(--neon-green);  --card-glow: rgba(57,255,20,0.05);  --card-border: rgba(57,255,20,0.3); }

.service-card:hover {
  transform: translateY(-10px);
  background: var(--bg-card-hover);
  border-color: var(--card-border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px var(--card-glow, rgba(180,77,255,0.08));
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }

.service-card.featured {
  border-color: rgba(180, 77, 255, 0.35);
  background: rgba(180, 77, 255, 0.05);
  box-shadow: 0 0 30px rgba(180, 77, 255, 0.08);
}

.service-badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(180,77,255,0.3));
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: white;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.service-tags span {
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.services-cta {
  text-align: center;
  padding: 44px;
  background: rgba(180, 77, 255, 0.05);
  border: 1px solid rgba(180, 77, 255, 0.18);
  border-radius: var(--border-radius);
}

.services-cta p { color: var(--text-secondary); margin-bottom: 20px; font-size: 1.05rem; }

/* Rentals word hover colour shift */
.rentals-word {
  display: inline-block;
  transition: color 0.35s ease, text-shadow 0.35s ease;
  cursor: default;
}
.rentals-word:hover {
  animation: rentalsColorCycle 1.8s linear infinite;
}
@keyframes rentalsColorCycle {
  0%   { color: var(--neon-purple); text-shadow: 0 0 30px var(--neon-purple-glow); }
  25%  { color: var(--neon-cyan);   text-shadow: 0 0 30px var(--neon-cyan-glow); }
  50%  { color: var(--neon-pink);   text-shadow: 0 0 30px var(--neon-pink-glow); }
  75%  { color: var(--neon-yellow); text-shadow: 0 0 30px var(--neon-yellow-glow); }
  100% { color: var(--neon-purple); text-shadow: 0 0 30px var(--neon-purple-glow); }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#gallery { background: var(--bg-primary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
  margin-bottom: 44px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.03);
}

.gallery-item.large { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  transition: background 0.3s ease;
}

.gallery-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.5; }
.gallery-placeholder .ph-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 0.4; }

.gallery-item:hover .gallery-placeholder { background: rgba(180,77,255,0.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan-glow);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.06);
}

.gallery-more { text-align: center; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(12px);
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 0 80px rgba(180,77,255,0.25);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.open img { transform: scale(1); }

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.lightbox-close { top: 24px; right: 24px; font-size: 1.1rem; }
.lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(180,77,255,0.3);
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(180,77,255,0.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  right: -250px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,206,0.05), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.about-content .section-tag  { margin-bottom: 16px; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }

.about-content > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.highlight:hover {
  border-color: var(--border-glow-purple);
  background: rgba(180,77,255,0.05);
}

.highlight-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(180,77,255,0.4));
}

.highlight strong { display: block; font-size: 1rem; margin-bottom: 3px; }
.highlight p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
}

.stat-card:hover {
  border-color: var(--border-glow-purple);
  box-shadow: 0 0 35px rgba(180,77,255,0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--neon-purple);
  line-height: 1;
}

.stat-card p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
#booking {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

#booking::before {
  content: '';
  position: absolute;
  left: -250px; bottom: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,77,255,0.06), transparent 70%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.booking-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 44px;
}

.booking-form { display: flex; flex-direction: column; gap: 22px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-sm);
  padding: 14px 16px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon-purple);
  background: rgba(180,77,255,0.05);
  box-shadow: 0 0 0 3px rgba(180,77,255,0.12);
}

.select-wrapper { position: relative; }

.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 0.85rem;
}

.form-group select { cursor: pointer; padding-right: 40px; }
.form-group select option { background: #1a1a2e; color: white; }

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-sm);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 4px;
  border-radius: 4px;
}

.checkbox-label:hover { color: white; }

.checkbox-label input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--neon-purple);
  cursor: pointer;
  flex-shrink: 0;
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(57,255,20,0.08);
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: var(--border-radius-sm);
  text-align: center;
  color: var(--neon-green);
  font-weight: 600;
  font-size: 1.05rem;
}

.hidden { display: none; }

/* Contact sidebar */
.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 28px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item a {
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-item a:hover {
  color: white;
  text-shadow: 0 0 15px var(--neon-cyan-glow);
}

.contact-item span {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.highlight-card {
  background: rgba(180,77,255,0.05);
  border-color: rgba(180,77,255,0.22);
}

.highlight-card ul { display: flex; flex-direction: column; gap: 12px; }

.highlight-card ul li {
  font-size: 0.93rem;
  color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #050509;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--neon-purple);
  text-shadow: 0 0 20px var(--neon-purple-glow);
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 12px; }

.social-btn {
  padding: 9px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
  text-transform: uppercase;
}

.social-btn:hover {
  border-color: var(--neon-purple);
  color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(180,77,255,0.2);
}

.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 12px; }

.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--neon-purple); }

.footer-services li { color: var(--text-muted); font-size: 0.9rem; }

.footer-contact p { margin-bottom: 12px; }
.footer-contact a { color: var(--neon-cyan); font-size: 0.95rem; transition: var(--transition); }
.footer-contact a:hover { color: white; }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0.5px; }

.footer-seo {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}

.footer-seo p {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.18);
  line-height: 1.9;
  max-width: 960px;
  margin: 0 auto;
}

.footer-credit {
  margin-top: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.footer-credit a {
  color: var(--neon-purple);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-credit a:hover { opacity: 1; }

/* ============================================
   LIGHTING SECTION
   ============================================ */
#lighting { background: var(--bg-secondary); }

.lighting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.lighting-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  position: relative;
  overflow: hidden;
}

.lighting-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lighting-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-glow-cyan);
  background: var(--bg-card-hover);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px rgba(0,212,255,0.08);
}

.lighting-card:hover::before { opacity: 1; }

.lighting-featured {
  border-color: rgba(180, 77, 255, 0.3);
  background: rgba(180, 77, 255, 0.04);
}

.lighting-featured::before {
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.lighting-featured:hover {
  border-color: rgba(180, 77, 255, 0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px rgba(180,77,255,0.1);
}

.lighting-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.4));
  transition: transform 0.3s ease;
}

.lighting-card:hover .lighting-icon { transform: scale(1.1); }

.lighting-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.lighting-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.lighting-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.lighting-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.8); }
  50%       { opacity: 1;    transform: scaleY(1); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-contact { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-wrapper { gap: 36px; padding: calc(var(--nav-height) + 10px) 36px 60px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 70px 0; }

  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .hero-wrapper {
    flex-direction: column;
    gap: 28px;
    padding: calc(var(--nav-height) + 20px) 24px 60px;
    text-align: center;
  }

  .hero-content { text-align: center; }
  .hero-ctas    { justify-content: center; }
  .hero-trust   { justify-content: center; }

  .hero-main-logo { width: clamp(220px, 72vw, 320px); }

  .hero-title { font-size: clamp(2.8rem, 13vw, 5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .lighting-grid  { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 2; }
  .gallery-grid .gallery-item:nth-child(n+5) { display: none; }

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

  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .booking-form-wrapper { padding: 24px; }

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

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-trust { gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .gallery-grid .gallery-item:nth-child(n+5) { display: block; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
