@import url('https://fonts.googleapis.com/css2?family=Caprasimo&family=Great+Vibes&family=Pacifico&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN TOKENS & VIBRANT VARIABLES
   ========================================== */
:root {
  /* Color Palette - Carbon Charcoal Dark Mode */
  --bg-primary: #060709;
  --bg-secondary: #0d0f14;
  --bg-tertiary: #131720;
  
  /* Rainbow Accent Palette */
  --color-green: #3ECF8E;
  --color-yellow: #FFD000;
  --color-orange: #FF7B00;
  --color-red: #FF3366;
  --color-pink: #EC4899;
  --color-purple: #8B5CF6;
  --color-blue: #3B82F6;
  --color-cyan: #06B6D4;
  
  --color-white: #f8fafc;
  --color-gray-light: #cbd5e1;
  --color-gray-muted: #64748b;
  --color-card-bg: rgba(13, 15, 20, 0.85);
  --color-glass-bg: rgba(6, 7, 9, 0.85);
  --color-glass-border: rgba(255, 255, 255, 0.07);
  --color-overlay: rgba(3, 4, 6, 0.92);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-cursive: 'Pacifico', cursive;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-logo-ms: 'Caprasimo', cursive;
  --font-logo-events: 'Great Vibes', cursive;

  /* Shadows */
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.65);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.45);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-elastic: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================
   RESET & SYSTEM STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

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

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-yellow);
}

/* ==========================================
   TYPOGRAPHY & UTILITIES
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.text-rainbow {
  background: linear-gradient(90deg, var(--color-red), var(--color-orange), var(--color-yellow), var(--color-green), var(--color-cyan), var(--color-blue), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 400% 400%;
  animation: rainbowFlow 10s infinite linear;
  display: inline-block;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
  display: inline-block;
  color: var(--color-yellow);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

@media(min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.section-desc {
  color: var(--color-gray-light);
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
  font-size: 1.1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

/* Equalizer Bars Divider Strip */
.equalizer-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 10;
}

.equalizer-bar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 102%;
  margin-left: -1%;
  height: 16px;
  gap: 3px;
}

.equalizer-bar span {
  flex: 1;
  height: 100%;
  border-radius: 1px 1px 0 0;
  min-width: 4px;
  animation: eqBounce 2s infinite ease-in-out alternate;
  transform-origin: bottom;
}

.eq-green  { background-color: var(--color-green); }
.eq-yellow { background-color: var(--color-yellow); }
.eq-orange { background-color: var(--color-orange); }
.eq-red    { background-color: var(--color-red); }
.eq-pink   { background-color: var(--color-pink); }
.eq-purple { background-color: var(--color-purple); }
.eq-blue   { background-color: var(--color-blue); }
.eq-cyan   { background-color: var(--color-cyan); }

/* Stagger delay classes for equalizer bars */
.equalizer-bar span:nth-child(2n) { animation-delay: -0.3s; animation-duration: 1.4s; }
.equalizer-bar span:nth-child(3n) { animation-delay: -0.6s; animation-duration: 1.8s; }
.equalizer-bar span:nth-child(4n) { animation-delay: -0.9s; animation-duration: 1.2s; }
.equalizer-bar span:nth-child(5n) { animation-delay: -1.2s; animation-duration: 1.6s; }
.equalizer-bar span:nth-child(6n) { animation-delay: -1.5s; animation-duration: 2.1s; }

/* Dynamic Card Glow Hover Colors */
.glow-green:hover  { border-color: var(--color-green) !important;  box-shadow: 0 8px 30px rgba(62, 207, 142, 0.25) !important; }
.glow-yellow:hover { border-color: var(--color-yellow) !important; box-shadow: 0 8px 30px rgba(255, 208, 0, 0.25) !important; }
.glow-orange:hover { border-color: var(--color-orange) !important; box-shadow: 0 8px 30px rgba(255, 123, 0, 0.25) !important; }
.glow-red:hover    { border-color: var(--color-red) !important;    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.25) !important; }
.glow-pink:hover   { border-color: var(--color-pink) !important;   box-shadow: 0 8px 30px rgba(236, 72, 153, 0.25) !important; }
.glow-purple:hover { border-color: var(--color-purple) !important; box-shadow: 0 8px 30px rgba(139, 92, 246, 0.25) !important; }
.glow-blue:hover   { border-color: var(--color-blue) !important;   box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25) !important; }
.glow-cyan:hover   { border-color: var(--color-cyan) !important;   box-shadow: 0 8px 30px rgba(6, 182, 212, 0.25) !important; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-primary {
  color: #000;
  background: var(--color-yellow);
  box-shadow: 0 4px 15px rgba(255, 208, 0, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 208, 0, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  color: var(--color-white);
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--color-yellow);
  box-shadow: 0 4px 15px rgba(255, 208, 0, 0.2);
  transform: translateY(-3px);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
  background: transparent;
}

header.scrolled {
  padding: 0.85rem 0;
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-glass);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Stylized logo matching card */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}

.logo-main {
  display: flex;
  align-items: baseline;
}

.logo-ms {
  font-family: var(--font-logo-ms);
  color: #f1d261; /* Yellow gold matching card */
  font-size: 2.2rem;
  font-weight: normal;
  text-transform: none;
  line-height: 0.95;
  letter-spacing: -0.5px;
  display: inline-block;
  margin-right: 0.15rem;
  text-shadow: 0 2px 10px rgba(241, 210, 97, 0.2);
}

.logo-events {
  font-family: var(--font-logo-ms);
  color: #f1d261; /* Yellow gold matches logo-ms */
  font-size: 2.2rem;
  font-weight: normal;
  text-transform: none;
  line-height: 0.95;
  margin-left: 0.05rem;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(241, 210, 97, 0.2);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-top: 4px;
  align-self: stretch;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 3px;
  width: 100%;
}

.nav-menu {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media(min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-yellow);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-yellow);
}

.nav-cta {
  display: none;
}

@media(min-width: 992px) {
  .nav-cta {
    display: block;
  }
}

/* Burger Menu Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

@media(min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--color-glass-border);
  z-index: 999;
  padding: 8rem 2.5rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glass);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--color-yellow);
}

.mobile-nav-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.mobile-nav-info a {
  font-size: 0.95rem;
  color: var(--color-gray-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-info a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.mobile-nav-info a:hover {
  color: var(--color-yellow);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-overlay);
  backdrop-filter: blur(10px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  text-align: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
  transform: scale(1.06);
  z-index: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 7, 9, 0.25) 0%, rgba(6, 7, 9, 0.6) 85%),
              rgba(6, 7, 9, 0.15);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Floating colored ambient glow particles */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.2;
  z-index: 3;
}

.ambient-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--color-blue);
  top: -10%;
  right: -5%;
  animation: floatAmbient 20s infinite alternate ease-in-out;
}

.ambient-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--color-pink);
  bottom: -10%;
  left: -5%;
  animation: floatAmbient 16s infinite alternate ease-in-out -8s;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.hero-tag {
  background: rgba(255, 208, 0, 0.07);
  border: 1px solid rgba(255, 208, 0, 0.2);
  color: var(--color-yellow);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(255, 208, 0, 0.1);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  margin-left: auto;
  margin-right: auto;
}

@media(min-width: 576px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media(min-width: 1200px) {
  .hero-title {
    font-size: 4.85rem;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-gray-light);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media(min-width: 576px) {
  .hero-btns {
    flex-direction: row;
  }
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-dot.active {
  background: var(--color-yellow);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--color-yellow);
}

.scroll-down {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
  z-index: 10;
}

.scroll-down-mouse {
  width: 22px;
  height: 38px;
  border: 2px solid var(--color-gray-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-down-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-yellow);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s infinite ease-in-out;
}

/* ==========================================
   FEATURES / WHY CHOOSE US
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media(min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-elastic);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.02), transparent 70%);
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  transition: var(--transition-smooth);
}

/* Icon colors matching card styles */
.feature-card:nth-child(1) .feature-icon-wrapper { color: var(--color-pink); }
.feature-card:nth-child(2) .feature-icon-wrapper { color: var(--color-yellow); }
.feature-card:nth-child(3) .feature-icon-wrapper { color: var(--color-cyan); }
.feature-card:nth-child(4) .feature-icon-wrapper { color: var(--color-green); }

.feature-card:hover .feature-icon-wrapper {
  color: var(--bg-primary);
  transform: rotate(360deg);
}

.feature-card:nth-child(1):hover .feature-icon-wrapper { background-color: var(--color-pink); box-shadow: 0 0 20px rgba(253, 45, 85, 0.4); }
.feature-card:nth-child(2):hover .feature-icon-wrapper { background-color: var(--color-yellow); box-shadow: 0 0 20px rgba(255, 208, 0, 0.4); }
.feature-card:nth-child(3):hover .feature-icon-wrapper { background-color: var(--color-cyan); box-shadow: 0 0 20px rgba(6, 182, 212, 0.4); }
.feature-card:nth-child(4):hover .feature-icon-wrapper { background-color: var(--color-green); box-shadow: 0 0 20px rgba(62, 207, 142, 0.4); }

.feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--color-gray-light);
  font-size: 0.95rem;
}

/* ==========================================
   STATS COUNTER SECTION
   ========================================== */
.stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--color-glass-border);
  border-bottom: 1px solid var(--color-glass-border);
  padding: 5rem 0;
}

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

@media(min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item:nth-child(1) .stat-number { color: var(--color-pink); }
.stat-item:nth-child(2) .stat-number { color: var(--color-yellow); }
.stat-item:nth-child(3) .stat-number { color: var(--color-cyan); }
.stat-item:nth-child(4) .stat-number { color: var(--color-green); }

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gray-light);
  font-weight: 600;
}

/* ==========================================
   SERVICES GRID (HOME / SERVICES PAGE)
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media(min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition-elastic);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.service-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

@media(min-width: 768px) {
  .service-img-wrapper {
    height: 350px;
  }
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to top, var(--bg-secondary) 15%, rgba(13, 15, 20, 0) 100%); */
  z-index: 1;
}

.service-icon-floating {
  position: absolute;
  bottom: -20px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--bg-primary);
  transition: var(--transition-smooth);
}

.service-card.glow-pink .service-icon-floating { background: var(--color-pink); box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4); }
.service-card.glow-yellow .service-icon-floating { background: var(--color-yellow); box-shadow: 0 4px 15px rgba(255, 208, 0, 0.4); }
.service-card.glow-cyan .service-icon-floating { background: var(--color-cyan); box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4); }
.service-card.glow-green .service-icon-floating { background: var(--color-green); box-shadow: 0 4px 15px rgba(62, 207, 142, 0.4); }
.service-card.glow-blue .service-icon-floating { background: var(--color-blue); box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); }
.service-card.glow-purple .service-icon-floating { background: var(--color-purple); box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4); }
.service-card.glow-orange .service-icon-floating { background: var(--color-orange); box-shadow: 0 4px 15px rgba(255, 123, 0, 0.4); }
.service-card.glow-red .service-icon-floating { background: var(--color-red); box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4); }

.service-card:hover .service-icon-floating {
  transform: translateY(-5px) rotate(15deg);
}

.service-icon-floating svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-body {
  padding: 2rem;
  padding-top: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.service-body p {
  color: var(--color-gray-light);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-gray-muted);
}

.service-price span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-yellow);
}

.service-btn {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--transition-smooth);
}

.service-card:hover .service-btn {
  color: var(--color-yellow);
}

.service-card:hover .service-btn svg {
  transform: translateX(5px);
}

/* ==========================================
   ABOUT / STORY SECTION
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media(min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-main {
  width: 85%;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-glass-border);
}

.about-img-secondary {
  position: absolute;
  width: 45%;
  bottom: -2rem;
  right: 0;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--color-yellow);
  animation: float 5s infinite alternate ease-in-out;
}

.about-text {
  text-align: left;
}

.about-text p {
  color: var(--color-gray-light);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-yellow);
  flex-shrink: 0;
}

.about-feature-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ==========================================
   GALLERY MASONRY & FILTER (HOME & GALLERY PAGE)
   ========================================== */
.gallery-filter-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.65rem 1.5rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--color-yellow);
  background: rgba(255, 255, 255, 0.03);
}

.filter-btn.active {
  border-color: var(--color-yellow);
  background: var(--color-yellow);
  color: #000;
}

/* Hover highlights by filter categories */
.filter-btn[data-filter="tents"]:hover { border-color: var(--color-purple); color: var(--color-purple); }
.filter-btn[data-filter="seating"]:hover { border-color: var(--color-pink); color: var(--color-pink); }
.filter-btn[data-filter="stages"]:hover { border-color: var(--color-cyan); color: var(--color-cyan); }

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

@media(min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  display: block;
}

.gallery-hover {
  display: none !important;
}

.gallery-item:hover img {
  transform: scale(1.1) rotate(1.5deg);
  filter: brightness(1.05);
}

.gallery-item h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  margin: 0;
  background: linear-gradient(to top, rgba(6, 7, 9, 0.95) 0%, rgba(6, 7, 9, 0.5) 70%, transparent 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 10;
  pointer-events: none;
}

.gallery-item:hover h4 {
  transform: translateY(0);
}

.video-thumbnail-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.video-thumbnail-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gallery-item:hover .video-thumbnail-container video {
  transform: scale(1.1) rotate(1.5deg);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(6, 7, 9, 0.75);
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 5;
  pointer-events: none;
}

.gallery-item:hover .play-overlay {
  background: var(--color-yellow);
  color: #000;
  border-color: var(--color-yellow);
  box-shadow: 0 0 20px rgba(255, 208, 0, 0.4);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-left: 2px;
}

.lightbox-content video {
  border-radius: 12px;
  border: 1px solid var(--color-glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: none;
  outline: none;
}

/* Gallery hover highlights */
.gallery-item[data-category="tents"]:hover { border-color: var(--color-purple); box-shadow: 0 0 25px rgba(139, 92, 246, 0.5); }
.gallery-item[data-category="seating"]:hover { border-color: var(--color-pink); box-shadow: 0 0 25px rgba(236, 72, 153, 0.5); }
.gallery-item[data-category="stages"]:hover { border-color: var(--color-cyan); box-shadow: 0 0 25px rgba(6, 182, 212, 0.5); }
.gallery-item[data-category="videos"]:hover { border-color: var(--color-yellow); box-shadow: 0 0 25px rgba(255, 208, 0, 0.5); }

.filter-btn[data-filter="videos"]:hover { border-color: var(--color-yellow); color: var(--color-yellow); }



/* ==========================================
   CONTACT SECTION (HOME / CONTACT PAGE)
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media(min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-title h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-title p {
  color: var(--color-gray-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-detail-item:nth-child(1) .contact-icon-box { color: var(--color-pink); }
.contact-detail-item:nth-child(2) .contact-icon-box { color: var(--color-yellow); }
.contact-detail-item:nth-child(3) .contact-icon-box { color: var(--color-cyan); }

.contact-detail-item:hover .contact-icon-box {
  color: var(--bg-primary);
}

.contact-detail-item:nth-child(1):hover .contact-icon-box { background-color: var(--color-pink); box-shadow: 0 0 15px rgba(253, 45, 85, 0.4); }
.contact-detail-item:nth-child(2):hover .contact-icon-box { background-color: var(--color-yellow); box-shadow: 0 0 15px rgba(255, 208, 0, 0.4); }
.contact-detail-item:nth-child(3):hover .contact-icon-box { background-color: var(--color-cyan); box-shadow: 0 0 15px rgba(6, 182, 212, 0.4); }

.contact-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-text-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-text-box p,
.contact-text-box a {
  color: var(--color-gray-light);
  font-size: 0.95rem;
}

.contact-text-box a:hover {
  color: var(--color-yellow);
}

.contact-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-light);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--color-yellow);
  color: var(--bg-primary);
  border-color: var(--color-yellow);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 208, 0, 0.4);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Glass Contact Form */
.contact-form-wrapper {
  background: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass);
}

@media(min-width: 576px) {
  .contact-form-wrapper {
    padding: 3.5rem;
  }
}

.form-group {
  margin-bottom: 1.75rem;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media(min-width: 576px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gray-light);
  margin-bottom: 0.65rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(6, 7, 9, 0.6);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  color: var(--color-white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 15px rgba(255, 208, 0, 0.15);
  background: rgba(6, 7, 9, 0.8);
}

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

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD000'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.5rem;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
footer {
  background: #030406;
  border-top: 1px solid var(--color-glass-border);
  padding: 6rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.03) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

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

@media(min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

.footer-logo-box p {
  color: var(--color-gray-light);
  margin: 1.5rem 0 2rem 0;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--color-yellow);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--color-gray-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '→';
  color: var(--color-yellow);
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-yellow);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--color-gray-light);
  font-size: 0.95rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-yellow);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item a:hover {
  color: var(--color-yellow);
}

.footer-newsletter p {
  color: var(--color-gray-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.01);
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.85rem 1.25rem;
  color: var(--color-white);
  font-size: 0.9rem;
}

.newsletter-btn {
  background: var(--color-yellow);
  color: #000;
  padding: 0 1.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
}

.newsletter-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--color-glass-border);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--color-gray-muted);
  text-align: center;
  width: 100%;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--color-gray-muted);
}

.footer-bottom-links a:hover {
  color: var(--color-yellow);
}

/* ==========================================
   PAGE-SPECIFIC STYLES
   ========================================== */

/* Banner Styles (About, Services, Gallery, Contact) */
.page-banner {
  height: 45vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 5rem;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 208, 0, 0.03), transparent 70%),
              linear-gradient(to top, var(--bg-primary) 5%, rgba(6, 7, 9, 0.4) 100%);
  z-index: 1;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media(min-width: 768px) {
  .banner-title {
    font-size: 4.5rem;
  }
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gray-light);
}

.breadcrumb a:hover {
  color: var(--color-yellow);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
  fill: var(--color-gray-muted);
}

.breadcrumb span {
  color: var(--color-yellow);
}

/* Timeline/Milestones (About Page) */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--color-glass-border);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-container {
  padding: 1.5rem 3rem;
  position: relative;
  background: transparent;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--bg-primary);
  border: 4px solid var(--color-yellow);
  top: 2.25rem;
  border-radius: 50%;
  z-index: 1;
}

.left-timeline {
  left: 0;
}

.right-timeline {
  left: 50%;
}

.right-timeline::after {
  left: -8px;
}

.timeline-content {
  padding: 2rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  position: relative;
  border-radius: 16px;
  transition: var(--transition-elastic);
}

.timeline-content:hover {
  border-color: var(--color-yellow);
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(255, 208, 0, 0.2);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--color-gray-light);
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-container::after {
    left: 22px;
    right: auto;
  }
  .right-timeline {
    left: 0%;
  }
  .right-timeline::after {
    left: 22px;
    right: auto;
  }
}

/* FAQ Accordion (Contact Page) */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-glass-border);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-header h3 {
  color: var(--color-yellow);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-light);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--color-yellow);
  color: #000;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body-content {
  padding: 0 2rem 2rem 2rem;
  color: var(--color-gray-light);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1.5rem;
}

/* Custom Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  transform: scale(0.9);
  transition: var(--transition-elastic);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.lightbox-content img {
  border-radius: 12px;
  border: 1px solid var(--color-glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: var(--color-yellow);
  color: #000;
}

.lightbox-close svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.lightbox-caption {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Lightbox Navigation Buttons */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(6, 7, 9, 0.6);
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  z-index: 2010;
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.lightbox-prev {
  left: 2.5rem;
}

.lightbox-next {
  right: 2.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-yellow);
  color: #000;
  border-color: var(--color-yellow);
  box-shadow: 0 0 20px rgba(255, 208, 0, 0.4);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media(max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
  }
  .lightbox-prev {
    left: 1rem;
  }
  .lightbox-next {
    right: 1rem;
  }
}

/* Custom Maps Placeholder */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-card);
  position: relative;
  background: var(--bg-secondary);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 15, 20, 0.8) 0%, rgba(6, 7, 9, 0.9) 100%);
  position: relative;
  padding: 2rem;
  text-align: center;
}

.map-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: 
    radial-gradient(var(--color-yellow) 1.5px, transparent 1.5px), 
    radial-gradient(var(--color-yellow) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

.map-card {
  position: relative;
  z-index: 1;
  background: var(--color-glass-bg);
  backdrop-filter: blur(10px);
  padding: 2.25rem;
  border-radius: 16px;
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-glass);
  max-width: 450px;
}

.map-card svg {
  width: 48px;
  height: 48px;
  fill: var(--color-yellow);
  margin-bottom: 1rem;
}

.map-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.map-card p {
  font-size: 0.9rem;
  color: var(--color-gray-light);
  margin-bottom: 1.5rem;
}

/* Notification Alert box */
.alert-box {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-glass-bg);
  backdrop-filter: blur(15px);
  border-left: 4px solid var(--color-yellow);
  border-right: 1px solid var(--color-glass-border);
  border-top: 1px solid var(--color-glass-border);
  border-bottom: 1px solid var(--color-glass-border);
  padding: 1.25rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-glass);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(150px);
  opacity: 0;
  transition: var(--transition-elastic);
}

.alert-box.show {
  transform: translateY(0);
  opacity: 1;
}

.alert-box svg {
  width: 24px;
  height: 24px;
  fill: var(--color-yellow);
}

.alert-content h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.alert-content p {
  font-size: 0.85rem;
  color: var(--color-gray-light);
}

/* ==========================================
   SCROLL INTERSECTION ANIMATIONS
   ========================================== */

/* Pre-animation states */
.anim-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-scale-up {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-reveal-clip {
  opacity: 0;
  clip-path: circle(0% at 50% 50%);
  transition: opacity 1s ease, clip-path 1.2s cubic-bezier(0.86, 0, 0.07, 1);
}

.anim-stagger-container > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active states triggers */
.animated.anim-fade-up {
  opacity: 1;
  transform: translateY(0);
}

.animated.anim-scale-up {
  opacity: 1;
  transform: scale(1);
}

.animated.anim-slide-left {
  opacity: 1;
  transform: translateX(0);
}

.animated.anim-slide-right {
  opacity: 1;
  transform: translateX(0);
}

.animated.anim-reveal-clip {
  opacity: 1;
  clip-path: circle(75% at 50% 50%);
}

.animated.anim-stagger-container > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays (applied dynamically or hardcoded) */
.anim-delay-1 { transition-delay: 0.15s; }
.anim-delay-2 { transition-delay: 0.3s; }
.anim-delay-3 { transition-delay: 0.45s; }
.anim-delay-4 { transition-delay: 0.6s; }
.anim-delay-5 { transition-delay: 0.75s; }

/* ==========================================
   KEYFRAME DEFINITIONS
   ========================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -45px) scale(1.1); }
  100% { transform: translate(-30px, 60px) scale(0.9); }
}

@keyframes scrollWheel {
  0% { opacity: 0; top: 6px; }
  20% { opacity: 1; }
  80% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

@keyframes eqBounce {
  0% { transform: scaleY(0.15); }
  100% { transform: scaleY(1); }
}

@keyframes rainbowFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================
   INTERACTIVE WHY CHOOSE US CARDS
   ========================================== */
.unique-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media(min-width: 576px) {
  .unique-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1200px) {
  .unique-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.unique-feature-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 24px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              border-color 0.3s ease,
              box-shadow 0.5s ease;
  z-index: 1;
}

.unique-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  transform: scale(0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.unique-feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--theme-color);
  box-shadow: 0 15px 35px var(--glow-color);
}

.unique-feature-card:hover::before {
  transform: scale(1);
  opacity: 1;
}

.uf-quality {
  --theme-color: var(--color-pink);
  --glow-color: rgba(253, 45, 85, 0.25);
}
.uf-execution {
  --theme-color: var(--color-yellow);
  --glow-color: rgba(255, 208, 0, 0.25);
}
.uf-decorators {
  --theme-color: var(--color-cyan);
  --glow-color: rgba(6, 182, 212, 0.25);
}
.uf-pricing {
  --theme-color: var(--color-green);
  --glow-color: rgba(62, 207, 142, 0.25);
}

.uf-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem auto;
  color: var(--theme-color);
  font-size: 1.75rem;
  transition: transform 0.5s ease, background 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.uf-icon-container::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--theme-color);
  border-bottom-color: var(--theme-color);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.3s ease;
  transform: rotate(0deg) scale(1.1);
}

.unique-feature-card:hover .uf-icon-container {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--theme-color);
  box-shadow: 0 0 20px var(--glow-color);
}

.unique-feature-card:hover .uf-icon-container::after {
  opacity: 1;
  transform: rotate(180deg) scale(1);
}

.uf-icon-container svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.uf-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.unique-feature-card:hover .uf-title {
  color: var(--theme-color);
}

.uf-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-gray-light);
  transition: color 0.3s ease;
}

.unique-feature-card:hover .uf-answer {
  color: var(--color-white);
}

@keyframes cardFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.unique-feature-card:nth-child(even) {
  animation: cardFloat 6s infinite ease-in-out alternate;
}
.unique-feature-card:nth-child(odd) {
  animation: cardFloat 6s infinite ease-in-out alternate -3s;
}

/* ==========================================
   ADDITIONAL RESPONSIVE DESIGN IMPROVEMENTS
   ========================================== */

/* Fixes for mobile drawer scrolling & heights */
.mobile-nav {
  overflow-y: auto;
  max-height: 100vh;
}

@media (max-height: 600px) {
  .mobile-nav {
    padding: 5rem 2rem 2rem 2rem;
  }
  .mobile-nav-links {
    gap: 1rem;
  }
  .mobile-nav-link {
    font-size: 1.1rem;
  }
  .mobile-nav-info {
    padding-top: 1rem;
    gap: 0.5rem;
  }
}

/* Fixes for overlapping about section images on mobile */
@media (max-width: 991px) {
  .about-images {
    margin-bottom: 3.5rem;
  }
}

/* Fixes for about section feature checklist on small screens */
@media (max-width: 480px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Fixes for map container height on mobile */
@media (max-width: 767px) {
  .map-container {
    height: 300px;
  }
}

/* Fixes for contact form card padding on small screens */
@media (max-width: 575px) {
  .contact-form-wrapper {
    padding: 1.5rem 1.25rem;
  }
}

/* Fixes for lightbox close button positioning and responsiveness */
@media (max-width: 767px) {
  .lightbox-close {
    position: fixed !important;
    top: 1.5rem !important;
    right: 1.5rem !important;
    left: auto !important;
    z-index: 2020;
    background: rgba(6, 7, 9, 0.8) !important;
    border: 1px solid var(--color-glass-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }
  .lightbox-content {
    max-height: 80vh;
  }
}

/* Responsive Logo Scaling under 480px */
@media (max-width: 479px) {
  .logo-ms {
    font-size: 1.7rem;
  }
  .logo-events {
    font-size: 1.7rem;
  }
  .logo-tagline {
    font-size: 0.5rem;
    letter-spacing: 1.5px;
  }
}

