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

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8941E;
  --neon-blue: #00D4FF;
  --neon-purple: #A855F7;
  --neon-pink: #FF2D95;
  --accent-purple: #7C3AED;
  --accent-blue: #3B82F6;
  --accent-violet: #8B5CF6;
  --bg-dark: #3D3060;
  --bg-card: #13112A;
  --bg-card-hover: #1C1938;
  --text-primary: #FFFFFF;
  --text-secondary: #DDD8EC;
  --text-muted: #A99CC0;
  --border-subtle: rgba(139, 92, 246, 0.2);
  --glow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
  --glow-neon: 0 0 40px rgba(139, 92, 246, 0.3);
  --glow-purple: 0 0 60px rgba(124, 58, 237, 0.2);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ANIMATED BACKGROUND GLOW ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.09) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(139,92,246,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 60%, rgba(212,175,55,0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: rgba(13,11,26,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.scrolled {
  background: rgba(61,48,96,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.nav.scrolled .nav-logo-img {
  height: 34px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 8px;
}

.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--text-secondary);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #000 !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem;
  transition: all 0.3s !important;
  -webkit-text-fill-color: initial !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.nav-cta::after { display: none !important; }

.nav-socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--text-secondary);
}

.nav-social-icon::after { display: none !important; }

.nav-social-icon:hover {
  background: rgba(139,92,246,0.15);
  border-color: var(--accent-violet);
  color: var(--accent-violet);
  transform: translateY(-2px);
}

.nav-social-icon svg { fill: currentColor; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background:
    linear-gradient(180deg, rgba(61,48,96,0.15) 0%, rgba(61,48,96,0.4) 50%, rgba(61,48,96,0.92) 100%),
    url('IMAGES - ALL STARS ENTERTAINMENT/360 glass booth.jpg') center/cover no-repeat;
  animation: kenBurns1 30s ease-in-out infinite;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.8; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ===== KEN BURNS EFFECT ===== */
@keyframes kenBurns1 {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.04) translate(-0.5%, -0.3%); }
  100% { transform: scale(1) translate(0, 0); }
}
@keyframes kenBurns2 {
  0%   { transform: scale(1.01) translate(-0.3%, 0); }
  50%  { transform: scale(1.05) translate(0.5%, -0.5%); }
  100% { transform: scale(1.01) translate(-0.3%, 0); }
}
@keyframes kenBurns3 {
  0%   { transform: scale(1.02) translate(0.3%, -0.3%); }
  50%  { transform: scale(1.06) translate(-0.3%, 0.5%); }
  100% { transform: scale(1.02) translate(0.3%, -0.3%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  background: rgba(212,175,55,0.05);
  animation: fadeInUp 1s ease-out;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--accent-violet), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

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

.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease-out 1s both;
}

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

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 20px; }
}

/* ===== SECTION STYLES ===== */
section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  font-weight: 300;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #352A55 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, #1A0A3E, #2D1B69, #0A1628, #3A1D6E, #0E2A4A, #1A0A3E);
  background-size: 400% 400%;
  animation: serviceCardGlow 5s ease infinite;
  border: 2px solid rgba(124,58,237,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s;
}

.service-card:nth-child(2) { animation-delay: -1.7s; }
.service-card:nth-child(3) { animation-delay: -3.4s; }

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

@keyframes serviceCardGlow {
  0%   { background-position: 0% 50%;   border-color: rgba(124,58,237,0.5); box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 40px rgba(124,58,237,0.25), 0 0 80px rgba(124,58,237,0.08); }
  25%  { background-position: 50% 100%; border-color: rgba(59,130,246,0.5); box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 40px rgba(59,130,246,0.3), 0 0 80px rgba(59,130,246,0.1); }
  50%  { background-position: 100% 50%; border-color: rgba(0,212,255,0.5); box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,255,0.3), 0 0 80px rgba(0,212,255,0.1); }
  75%  { background-position: 50% 0%;   border-color: rgba(212,175,55,0.45); box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.25), 0 0 80px rgba(212,175,55,0.08); }
  100% { background-position: 0% 50%;   border-color: rgba(124,58,237,0.5); box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 40px rgba(124,58,237,0.25), 0 0 80px rgba(124,58,237,0.08); }
}

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

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  animation: kenBurns2 28s ease-in-out infinite;
}

.service-card:nth-child(2) .service-img img { animation-delay: -6s; }
.service-card:nth-child(3) .service-img img { animation-delay: -12s; }

.service-card:hover .service-img img {
  animation-play-state: paused;
  transform: scale(1.08);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,17,42,1) 0%, rgba(19,17,42,0) 60%);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(139,92,246,0.4);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(10px);
}

.service-body {
  padding: 28px 28px 32px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.service-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.service-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-features li {
  padding: 5px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.3s;
}

.service-link:hover { gap: 14px; }

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(135deg, #8B7318, #A6891E, #B8941E, #A6891E, #8B7318);
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  display: none;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  padding-top: 2px;
  color: #fff;
  background: rgba(0,0,0,0.25);
  border: 2px solid rgba(0,0,0,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  color: #fff;
}

.step-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.how-it-works .section-label {
  color: rgba(255,255,255,0.7);
}

.how-it-works .section-label::before {
  background: rgba(255,255,255,0.5);
}

.how-it-works .section-title {
  color: #fff;
}

.how-it-works .section-subtitle {
  color: rgba(255,255,255,0.8);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: linear-gradient(180deg, #352A55, var(--bg-dark));
}

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

.why-card {
  padding: 40px;
  background: linear-gradient(135deg, #1A0A3E, #2D1B69, #0A1628, #3A1D6E, #0E2A4A, #1A0A3E);
  background-size: 400% 400%;
  animation: whyCardGlow 5s ease infinite;
  border: 2px solid rgba(124,58,237,0.3);
  border-radius: var(--radius);
  transition: transform 0.4s;
  display: flex;
  gap: 24px;
}

.why-card:nth-child(2) { animation-delay: -1.25s; }
.why-card:nth-child(3) { animation-delay: -2.5s; }
.why-card:nth-child(4) { animation-delay: -3.75s; }

.why-card:hover {
  transform: translateY(-4px);
}

@keyframes whyCardGlow {
  0%   { background-position: 0% 50%;   border-color: rgba(124,58,237,0.5); box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(124,58,237,0.25), 0 0 80px rgba(124,58,237,0.08); }
  25%  { background-position: 50% 100%; border-color: rgba(59,130,246,0.5); box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(59,130,246,0.3), 0 0 80px rgba(59,130,246,0.1); }
  50%  { background-position: 100% 50%; border-color: rgba(0,212,255,0.5); box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(0,212,255,0.3), 0 0 80px rgba(0,212,255,0.1); }
  75%  { background-position: 50% 0%;   border-color: rgba(212,175,55,0.45); box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(212,175,55,0.25), 0 0 80px rgba(212,175,55,0.08); }
  100% { background-position: 0% 50%;   border-color: rgba(124,58,237,0.5); box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(124,58,237,0.25), 0 0 80px rgba(124,58,237,0.08); }
}

.why-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(59,130,246,0.1));
  border: 1px solid rgba(139,92,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--bg-dark);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  animation: kenBurns3 32s ease-in-out infinite;
}

.gallery-item:nth-child(2) img { animation: kenBurns1 30s ease-in-out infinite; animation-delay: -6s; }
.gallery-item:nth-child(3) img { animation: kenBurns2 34s ease-in-out infinite; animation-delay: -10s; }
.gallery-item:nth-child(4) img { animation: kenBurns1 29s ease-in-out infinite; animation-delay: -5s; }
.gallery-item:nth-child(5) img { animation: kenBurns3 31s ease-in-out infinite; animation-delay: -9s; }

.gallery-item:hover img {
  animation-play-state: paused;
  transform: scale(1.08);
}

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

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

.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
}

/* Placeholder for gallery images */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1838, #141230);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(212,175,55,0.2);
}

/* ===== INSTAGRAM BANNER ===== */
.ig-banner {
  display: block;
  position: relative;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FCAF45, #833AB4);
  background-size: 300% 300%;
  animation: igGradient 6s ease infinite;
  overflow: hidden;
  transition: all 0.4s;
  text-decoration: none;
}

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

.ig-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(131,58,180,0.3), 0 0 40px rgba(225,48,108,0.15);
}

.ig-banner-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
  transition: opacity 0.4s;
}

.ig-banner:hover .ig-banner-glow {
  opacity: 0.6;
}

.ig-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.ig-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-banner-text {
  flex: 1;
}

.ig-banner-text h3 {
  color: #fff;
}

.ig-banner-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  transition: transform 0.3s;
}

.ig-banner:hover .ig-banner-arrow {
  transform: translateX(6px);
  color: #fff;
}

/* ===== TIKTOK BANNER ===== */
.tt-banner {
  display: block;
  position: relative;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #010101, #25F4EE, #FE2C55, #010101);
  background-size: 300% 300%;
  animation: ttGradient 6s ease infinite;
  overflow: hidden;
  transition: all 0.4s;
  text-decoration: none;
}

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

.tt-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(37,244,238,0.2), 0 0 40px rgba(254,44,85,0.15);
}

.tt-banner .ig-banner-glow {
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.tt-banner:hover .ig-banner-glow {
  opacity: 0.8;
}

.tt-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .ig-banner, .tt-banner { padding: 24px; }
  .ig-banner-content { flex-wrap: wrap; }
  .ig-banner-arrow { display: none; }
}

/* ===== BOOKING FORM ===== */
.booking {
  background: linear-gradient(180deg, var(--bg-dark), #352A55);
}

.booking-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.booking-info {
  text-align: center;
}

.booking-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.booking-info > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-details {
  max-width: 800px;
  margin: 0 auto;
}

.contact-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item .label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item .value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-item .value a {
  color: var(--gold);
  transition: opacity 0.3s;
}
.contact-item .value a:hover { opacity: 0.8; }

.booking-form {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

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

.form-group.full-width { grid-column: span 2; }

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-violet);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}

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

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: #1a1838;
  color: var(--text-primary);
}

.form-submit {
  margin-top: 28px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #302650;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}

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

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(124,58,237,0.15);
  border-color: var(--accent-violet);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(124,58,237,0.15);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
  transition: fill 0.3s;
}

.social-link:hover svg { fill: var(--accent-violet); }

.footer-col h4 {
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* ===== WHATSAPP WIDGET ===== */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-chat-box {
  display: none;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(37,211,102,0.15);
  animation: waSlideUp 0.3s ease-out;
}

.wa-chat-box.active { display: block; }

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

.wa-header {
  background: #075E54;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-header-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.wa-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-header-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.wa-header-info p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}

.wa-header-close {
  margin-left: auto;
  background: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  padding: 4px 8px;
  transition: color 0.2s;
}

.wa-header-close:hover { color: #fff; }

.wa-body {
  padding: 20px;
  background: #ECE5DD;
  min-height: 100px;
}

.wa-message {
  background: #fff;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  max-width: 250px;
  font-size: 0.85rem;
  color: #333;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  position: relative;
}

.wa-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
}

.wa-message .time {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: #999;
  margin-top: 4px;
}

.wa-footer {
  padding: 16px 20px;
  background: #fff;
}

.wa-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}

.wa-footer a:hover {
  background: #20BD5A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.wa-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  position: relative;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.wa-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.wa-btn-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.wa-widget:not(.chat-open) .wa-btn:hover + .wa-tooltip,
.wa-widget:not(.chat-open) .wa-btn:hover ~ .wa-tooltip {
  opacity: 1;
}

.wa-widget.chat-open .wa-tooltip { display: none; }

@media (max-width: 480px) {
  .wa-chat-box { width: calc(100vw - 32px); right: 0; }
  .wa-widget { right: 16px; bottom: 16px; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== ANIMATED SECTION TITLES ===== */
.section-title {
  background: linear-gradient(90deg, #fff, var(--gold-light), var(--neon-blue), var(--accent-violet), #fff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 6s ease infinite;
}

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

/* ===== GLOWING CTA BUTTONS ===== */
.btn-primary {
  position: relative;
  animation: btnPulse 3s ease infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(212,175,55,0.3), 0 0 30px rgba(212,175,55,0.1); }
  50% { box-shadow: 0 4px 25px rgba(212,175,55,0.5), 0 0 50px rgba(212,175,55,0.2), 0 0 80px rgba(212,175,55,0.08); }
}

.nav-cta {
  animation: btnPulse 3s ease infinite !important;
}

/* ===== GALLERY HOVER GLOW ===== */
.gallery-item {
  border: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.gallery-item:hover {
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 8px 40px rgba(124,58,237,0.25), 0 0 60px rgba(124,58,237,0.1);
}

/* ===== STEP NUMBER SHIMMER ===== */
.step-number {
  position: relative;
  overflow: hidden;
}

.step-number::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 60%, rgba(212,175,55,0.3) 75%, transparent 90%, transparent 100%);
  animation: stepSpin 4s linear infinite;
}

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

/* ===== BOOKING FORM ANIMATED BORDER ===== */
.booking-form::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(45deg, var(--accent-purple), var(--neon-blue), var(--gold), var(--accent-violet), var(--accent-purple));
  background-size: 400% 400%;
  animation: formBorderGlow 10s ease infinite;
  border-radius: calc(var(--radius) + 1px);
  z-index: -1;
  opacity: 0.2;
  transition: opacity 0.4s;
}

.booking-form:hover::before {
  opacity: 0.35;
}

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

/* ===== FLOATING GLOW ORBS ===== */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.12;
  animation: orbFloat 20s ease-in-out infinite;
}

.glow-orb-1 {
  width: 400px; height: 400px;
  background: var(--accent-purple);
  top: 10%; left: -5%;
  animation-delay: 0s;
}

.glow-orb-2 {
  width: 350px; height: 350px;
  background: var(--neon-blue);
  top: 40%; right: -8%;
  animation-delay: -7s;
}

.glow-orb-3 {
  width: 300px; height: 300px;
  background: var(--gold);
  bottom: 15%; left: 10%;
  animation-delay: -14s;
  opacity: 0.06;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 40px) scale(0.95); }
  75% { transform: translate(30px, 20px) scale(1.05); }
}

/* ===== SECTION LABEL GLOW LINE ===== */
.section-label::before {
  animation: labelLine 2s ease infinite;
}

@keyframes labelLine {
  0%, 100% { box-shadow: 0 0 8px rgba(212,175,55,0.4); width: 30px; }
  50% { box-shadow: 0 0 16px rgba(212,175,55,0.7); width: 50px; }
}

/* ===== WHY-ICON GLOW ===== */
.why-icon {
  animation: iconGlow 4s ease infinite;
}

@keyframes iconGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(124,58,237,0.15); }
  50% { box-shadow: 0 0 30px rgba(124,58,237,0.35), 0 0 60px rgba(124,58,237,0.1); }
}

/* ===== SOCIAL BANNER HOVER LIFT ===== */
.ig-banner, .tt-banner {
  transition: all 0.4s, transform 0.4s;
}

/* ===== PACKAGES & PRICING ===== */
.pricing {
  background: linear-gradient(180deg, #352A55 0%, var(--bg-dark) 100%);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.04);
  border-radius: 50px;
  padding: 4px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle button {
  flex: 1;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.pricing-toggle button.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: var(--glow-gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: linear-gradient(135deg, #1A0A3E, #2D1B69, #0A1628);
  border: 2px solid rgba(124,58,237,0.3);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.4s, border-color 0.4s;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.5);
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,0.15), 0 8px 32px rgba(0,0,0,0.4);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
}

.price-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.price-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.price-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.price-card .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.price-card .price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.price-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  color: #10B981;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.pricing-note strong {
  color: var(--gold);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(180deg, var(--bg-dark), #352A55);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: linear-gradient(135deg, #1A0A3E, #2D1B69, #0A1628);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: transform 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.9rem;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--neon-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-author .name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-author .event {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: rgba(212,175,55,0.08);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

/* ===== FAQ ===== */
.faq {
  background: linear-gradient(180deg, #352A55, var(--bg-dark));
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: rgba(212,175,55,0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.3s;
}

.faq-item.active .faq-question {
  color: var(--gold);
}

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #100E20;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 999;
    padding: 12px 0;
    border-bottom: 2px solid rgba(124,58,237,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  }

  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    display: block;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a:hover { background: rgba(124,58,237,0.15); }
  .nav-links .nav-cta {
    font-size: 0.95rem !important;
    padding: 16px 28px !important;
    margin-top: 0;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet)) !important;
    border-radius: 0 !important;
    text-align: left;
  }
  .nav-socials {
    gap: 16px !important;
    margin-top: 0;
    padding: 20px 28px !important;
    width: 100% !important;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: none !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
  }
  .nav-social-icon { width: 44px !important; height: 44px !important; }
  .nav-toggle { display: flex; z-index: 1001; }

  .nav { background: #100E20 !important; backdrop-filter: none !important; }
  .nav.scrolled { background: #100E20 !important; }

  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat .number { font-size: 1.5rem; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid::before { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { flex-direction: column; padding: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 0.88rem; padding: 16px 20px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }

  .contact-list { grid-template-columns: 1fr; }
  .contact-item { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .booking-form { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}
