/* ============================================================================
   MUZYCZNE GWIAZDY - ZOPTYMALIZOWANY CSS
   Wersja: 2.0 (Zoptymalizowana)
   ============================================================================ */

/* ========================================
   CSS VARIABLES - CONSOLIDATED (było 3 bloki, teraz 1)
   ======================================== */
:root {
  /* Ultra-Premium Palette */
  --bg: #050505;
  --panel: #0a0a0a;
  --muted: #dcdcdc;
  /* Improved contrast */
  --gold: #d4af37;
  --gold-vibrant: #f9d976;
  --gold-deep: #b8860b;
  --gold-soft: rgba(212, 175, 55, 0.08);
  --gold-glow: rgba(212, 175, 55, 0.2);
  --accent: #f4d03f;
  --glass: rgba(10, 10, 10, 0.85);
  /* Darker for better contrast */
  --glass-strong: rgba(15, 15, 15, 0.95);
  --glass-border: rgba(212, 175, 55, 0.25);

  /* Typography - Improved font stack */
  --font-header: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: clamp(1rem, 0.95vw, 1.125rem);
  --font-size-sm: clamp(0.875rem, 0.85vw, 1rem);
  --font-size-lg: clamp(1.125rem, 1.1vw, 1.25rem);
  --line-height-base: 1.75;
  --line-height-tight: 1.5;
  --line-height-loose: 2;

  /* Spacing */
  --radius: 20px;
  --radius-lg: 32px;
  --max-width: 1400px;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  --gradient-shimmer: linear-gradient(90deg,
      rgba(212, 175, 55, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(212, 175, 55, 0) 100%);
}

/* ========================================
   MOBILE MENU EMERGENCY FIX
   ======================================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    z-index: 2100 !important;
  }
  
  .nav-menu {
    display: flex !important;
    position: fixed !important;
    flex-direction: column !important;
    top: 60px !important;
    right: -100% !important;
    left: auto !important;
    width: 80vw !important;
    max-width: 320px !important;
    height: calc(100vh - 60px) !important;
    background: rgba(7, 7, 7, 0.95) !important;
    gap: 0 !important;
    padding: 20px !important;
    z-index: 2000 !important;
    transition: right 0.4s ease !important;
  }
  
  .nav-menu.active {
    right: 0 !important;
  }
  
  /* Show CTA buttons on mobile */
  .nav-item-cta {
    display: flex !important;
    margin-top: auto !important;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 10px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: #ffffff;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: var(--line-height-base);
  min-height: 100vh;
  letter-spacing: 0.01em;
}

/* Body noise overlay removed for performance */

/* Custom Premium Cursor - Only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
  }

  .cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s;
  }
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

img[loading="lazy"] {
  content-visibility: auto;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  width: 100%;
}

/* Improved responsive container padding */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* ========================================
   IMPROVED FOCUS STATES
   ======================================== */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
  outline: none;
}

/* Show accessible focus rings only for keyboard users */
html.user-is-tabbing button:focus,
html.user-is-tabbing input:focus,
html.user-is-tabbing textarea:focus,
html.user-is-tabbing select:focus,
html.user-is-tabbing a:focus {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

html.user-is-tabbing button:focus-visible,
html.user-is-tabbing input:focus-visible,
html.user-is-tabbing textarea:focus-visible,
html.user-is-tabbing select:focus-visible,
html.user-is-tabbing a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn:focus,
.btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(199, 159, 31, 0.4);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Improved touch targets - minimum 44x44px for accessibility */
button,
a.btn,
.hamburger,
.nav-link,
.mobile-cta-btn {
  min-height: 44px;
  min-width: 44px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: static;
  z-index: 1200;
  pointer-events: none;
  background: transparent;
  padding: 0;
  margin: 0;
  height: 0;
  display: block;
  overflow: visible;
}

.nav-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(199, 159, 31, 0.25);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(199, 159, 31, 0.1) inset;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1200;
  contain: layout style paint;
}

.nav-container:hover,
.nav-container.scrolled {
  background: rgba(15, 15, 15, 0.95);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(199, 159, 31, 0.2) inset;
  border-color: rgba(199, 159, 31, 0.35);
  padding: 8px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo .logo-text {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.nav-logo .logo-text:hover {
  filter: brightness(1.15);
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: right 0.4s ease;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  padding: 0.75rem 1rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  white-space: nowrap;
  border-radius: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  z-index: 1001;
}

.hamburger:hover {
  background: var(--glass-strong);
  transform: scale(1.05);
}

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

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

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

.bar {
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   PAGES & SECTIONS
   ======================================== */
.page {
  min-height: 100vh;
  padding-top: 88px;
  width: 100%;
  overflow-x: hidden;
}

section {
  padding: 80px 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.section-title {
  font-family: var(--font-header);
  color: var(--gold);
  font-size: clamp(2rem, 5vw + 0.5rem, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  overflow: hidden;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: var(--gradient-shimmer);
  animation: shimmer 4s infinite linear;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }

  50% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(199, 159, 31, 0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(224, 197, 106, 0.08), transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(199, 159, 31, 0.03), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.hero-text {
  flex: 1;
  max-width: 640px;
}

.hero-title {
  font-family: var(--font-header);
  font-size: clamp(2.5rem, 7vw + 1rem, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-base);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.microphone-graphic {
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(199, 159, 31, 0.2), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(199, 159, 31, 0.1), rgba(224, 197, 106, 0.05));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(199, 159, 31, 0.15),
    inset 0 0 60px rgba(199, 159, 31, 0.1);
  border: 2px solid rgba(199, 159, 31, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite, mic-pulse 3.5s ease-in-out infinite;
}

.microphone-graphic::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
  animation: glint 3s linear infinite;
}

@keyframes glint {
  0% {
    left: -50%;
    opacity: 0;
  }

  30% {
    opacity: 0.6;
  }

  50% {
    left: 150%;
    opacity: 1;
  }

  100% {
    left: 150%;
    opacity: 0;
  }
}

@keyframes mic-pulse {

  0%,
  100% {
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.7),
      0 0 40px rgba(199, 159, 31, 0.15),
      inset 0 0 60px rgba(199, 159, 31, 0.1);
  }

  50% {
    box-shadow:
      0 35px 90px rgba(0, 0, 0, 0.75),
      0 0 60px rgba(199, 159, 31, 0.25),
      inset 0 0 80px rgba(199, 159, 31, 0.15);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.microphone-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.microphone-graphic:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(199, 159, 31, 0.3),
    inset 0 0 100px rgba(199, 159, 31, 0.2);
  border-color: rgba(199, 159, 31, 0.4);
}

.microphone-graphic:hover .microphone-img {
  transform: translateY(-5px) scale(1.03);
}

.floating-notes {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.7;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(199, 159, 31, 0.3));
}

.floating-notes:nth-child(1) {
  left: 12%;
  top: 18%;
  animation-delay: 0s;
}

.floating-notes:nth-child(2) {
  left: 6%;
  top: 60%;
  animation-delay: 1.3s;
}

.floating-notes:nth-child(3) {
  right: 8%;
  top: 28%;
  animation-delay: 2.6s;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  min-width: 120px;
  /* Touch-friendly - WCAG 2.1 AA compliant */
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(-2px) scale(1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--muted);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  border-color: rgba(199, 159, 31, 0.3);
  transform: translateY(-2px);
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
  padding: 60px 0;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-header {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  width: 100%;
}

.about-image-wrapper {
  flex-shrink: 0;
  width: 400px;
  max-width: 100%;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(199, 159, 31, 0.2);
  transition: all 0.3s ease;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(199, 159, 31, 0.3);
  border-color: rgba(199, 159, 31, 0.4);
}

.about-text {
  flex: 1;
  min-width: 0;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: var(--line-height-base);
}

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

.stat-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 159, 31, 0.1), transparent);
  transition: left 0.5s;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 159, 31, 0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ========================================
   SERVICES
   ======================================== */
.services-page {
  padding-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    var(--shadow-lg),
    var(--shadow-gold),
    0 0 30px rgba(199, 159, 31, 0.15);
  border-color: rgba(199, 159, 31, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: var(--line-height-base);
}

.pricing-title {
  font-family: var(--font-header);
  color: var(--gold);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.service-details {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--glass-border);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(199, 159, 31, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.price-card:hover::after {
  opacity: 1;
}

.price-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    var(--shadow-lg),
    var(--shadow-gold),
    0 0 40px rgba(199, 159, 31, 0.2);
  border-color: rgba(199, 159, 31, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.price-card h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.price {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

.price-features li {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Offer Table Styling */
.offer-table-container {
  margin-top: 5rem;
  overflow-x: auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.offer-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 0.95rem;
  min-width: 600px;
}

.offer-table th,
.offer-table td {
  padding: 1.25rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.offer-table th {
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--gold-glow);
}

.offer-table tr:last-child td {
  border-bottom: none;
}

.offer-table tr:hover {
  background: rgba(199, 159, 31, 0.05);
  transition: background 0.3s ease;
}

.offer-table td:nth-child(3) {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

/* Offer table mobile styles moved to main mobile section */

/* ========================================
   GALLERY
   ======================================== */
.gallery-page {
  padding: 2rem 0 80px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--muted);
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(199, 159, 31, 0.3);
}

.gallery-section {
  margin-bottom: 4rem;
}

.gallery-section.hidden {
  display: none;
}

.gallery-album {
  margin-bottom: 2rem;
  background: rgba(15, 15, 15, 0.6);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.gallery-album-header {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: left;
}

.gallery-album-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.gallery-album-header[aria-expanded="true"] {
  background: rgba(199, 159, 31, 0.1);
  border-bottom: 1px solid var(--glass-border);
}

.album-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

.album-count {
  margin-left: auto;
  margin-right: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.album-toggle {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.gallery-album-header[aria-expanded="true"] .album-toggle {
  transform: rotate(180deg);
}

.gallery-album-content {
  padding: 1.5rem;
  animation: slideDown 0.3s ease-out;
  display: none;
  /* Hidden by default, shown when album is expanded */
}

.gallery-album-content:not(.hidden) {
  display: block;
}

.gallery-album-header[aria-expanded="true"]+.gallery-album-content {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  aspect-ratio: 16/9;
  /* Enforce consistent aspect ratio */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 159, 31, 0.1), rgba(224, 197, 106, 0.05));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

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

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(199, 159, 31, 0.3);
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-image,
.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image,
.gallery-item:hover .gallery-video {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(2px);
}

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

.gallery-view-btn,
.gallery-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(199, 159, 31, 0.5);
}

.gallery-item:hover .gallery-view-btn,
.gallery-item:hover .gallery-play-btn {
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image,
.lightbox-video {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-close:hover {
  background: rgba(244, 67, 54, 0.8);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--gold);
  font-size: 3rem;
  width: 60px;
  height: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
  border-radius: var(--radius);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(199, 159, 31, 0.2);
  color: #fff;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

/* Lightbox mobile styles moved to main mobile section */

/* ========================================
   OFFER TABLE (PRICING)
   ======================================== */
.offer-table-container {
  margin-top: 4rem;
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
}

.pricing-title {
  font-family: var(--font-header);
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.offer-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #fff;
}

.offer-table th {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-family: var(--font-header);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 1.2rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--glass-border);
}

.offer-table th:first-child {
  border-top-left-radius: 12px;
}

.offer-table th:last-child {
  border-top-right-radius: 12px;
}

.offer-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.offer-table tr:last-child td {
  border-bottom: none;
}

.offer-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-vibrant);
}

.offer-table td:nth-child(3) {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.offer-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-page {
  padding: 2rem 0 80px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.8rem;
  color: var(--gold);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  border-color: rgba(199, 159, 31, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.contact-form h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: clamp(0.875rem, 2vw, 1rem);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-family: var(--font-body);
  transition: all 0.3s ease;
  min-height: 48px;
  line-height: 1.5;
  /* Touch-friendly - WCAG 2.1 AA compliant */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 159, 31, 0.1);
  background: rgba(0, 0, 0, 0.4);
}

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

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(199, 159, 31, 0.15);
  border: 1px solid rgba(199, 159, 31, 0.3);
  color: #fff;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.form-error {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
  text-align: center;
  animation: shake 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  75% {
    transform: translateX(10px);
  }
}

/* ========================================
   FOOTER
   ======================================== */
/* Mobile CTA Bar - Hidden on desktop, shown on mobile */
.mobile-cta-bar {
  display: none;
}

.footer {
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
  background: var(--glass-strong);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  margin-top: 8rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--gold) 50%,
      transparent 100%);
  opacity: 0.5;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-icons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-icon-link {
    min-width: 140px;
    justify-content: center;
  }
}

.footer-logo .logo-text {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

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

.footer-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-links a:hover::after {
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.footer-description {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer-heading {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  min-height: 44px;
}

.social-icon-link:hover,
.social-icon-link:focus {
  color: var(--gold);
  background: rgba(199, 159, 31, 0.1);
  border-color: rgba(199, 159, 31, 0.3);
  transform: translateX(5px);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.social-icon-link::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.social-icon-link[href*="facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.social-icon-link[href*="youtube"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
}

.footer-contact-item {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   RESPONSIVE - TABLET (768px - 1023px)
   ======================================== */
@media (max-width: 1023px) {
  .hero-content {
    gap: 3rem;
  }

  .about-header {
    flex-direction: column;
    gap: 2rem;
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-text {
    width: 100%;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .contact-info {
    order: 2;
  }

  .contact-form {
    order: 1;
  }

  .contact-item {
    padding: 1rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
  }

  .contact-info h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
  }
}

/* ========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {

  /* FORCE MOBILE MENU STYLES */
  .hamburger {
    display: flex !important;
    z-index: 2100 !important;
  }

  /* Ensure sections don't overlap */
  section {
    padding: 40px 0;
    position: relative;
    z-index: 1;
  }

  .nav-container {
    top: 10px;
    width: calc(100% - 20px);
    max-width: 100%;
    padding: 12px 16px;
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    /* Safe area for notched devices */
    top: max(10px, env(safe-area-inset-top));
    z-index: 1200;
    position: fixed !important;
  }

  .nav-logo .logo-text {
    font-size: 1.3rem;
  }

  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    left: auto !important;
    width: min(320px, 85vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(7, 7, 7, 0.98) !important;
    backdrop-filter: blur(20px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
    border-left: 1px solid var(--glass-border) !important;
    display: flex !important;  /* ✅ DODAJ TĘ LINIĘ */
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: calc(80px + env(safe-area-inset-top)) 24px calc(80px + env(safe-area-inset-bottom)) 24px !important;
    gap: 0.5rem !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5) !important;
    z-index: 2000 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
    transform: none !important;
    /* Above mobile CTA bar */
  }

  .nav-menu.active {
    right: 0 !important;
    pointer-events: auto !important;
  }

  /* Overlay when menu is open */
  body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    animation: fadeIn 0.3s ease;
    pointer-events: auto;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link {
    padding: 1rem 0.75rem;
    font-size: 1.1rem;
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
  }

  .nav-link:focus,
  .nav-link:focus-visible {
    background: rgba(199, 159, 31, 0.1);
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  .hamburger {
    display: flex !important;
  }

  .hamburger:active {
    transform: scale(0.95);
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* Hero Section */
  .hero {
    padding: 60px 0 80px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    padding: 0 20px;
    align-items: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw + 0.5rem, 3rem);
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    max-width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 1.2rem 2rem;
    font-size: 1.05rem;
  }

  .hero-image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .microphone-graphic {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .floating-notes {
    display: none;
    /* Hide on mobile for better performance */
  }

  /* Sections */
  section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
  }

  .container {
    padding: 0 16px;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card,
  .price-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  /* About Stats */
  .about-stats {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 1.5rem;
  }

  /* Form inputs - iOS zoom fix */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    /* Prevents iOS zoom on focus */
    padding: 1rem;
  }

  .form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  /* Table on Mobile - Card view */
  .offer-table-container {
    margin-top: 3rem;
    padding: 1rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .offer-table,
  .offer-table thead,
  .offer-table tbody,
  .offer-table th,
  .offer-table td,
  .offer-table tr {
    display: block;
  }

  .offer-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .offer-table tr {
    border: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    padding: 1.2rem;
    background: var(--panel);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .offer-table tr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
  }

  .offer-table td {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding: 1rem 0 1rem 45%;
    text-align: right;
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    line-height: 1.5;
  }

  .offer-table td:last-child {
    border-bottom: none;
    font-size: 1.1rem;
    color: var(--gold-vibrant);
    margin-top: 0.5rem;
    padding-top: 1rem;
  }

  .offer-table td:before {
    position: absolute;
    left: 0;
    width: 42%;
    padding-right: 12px;
    white-space: nowrap;
    text-align: left;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
  }

  .offer-table td:nth-of-type(1):before {
    content: "Impreza";
  }

  .offer-table td:nth-of-type(2):before {
    content: "Zakres";
  }

  .offer-table td:nth-of-type(3):before {
    content: "Cena";
  }

  /* Lightbox mobile styles */
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 60px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  /* Sticky Mobile CTA Bar */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 12px 16px;
    gap: 12px;
    z-index: 1999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
    /* Safe area for notched devices */
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }

    to {
      transform: translateY(0);
    }
  }

  .mobile-cta-btn {
    flex: 1;
    min-height: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
  }

  .mobile-cta-btn:active {
    transform: scale(0.98);
  }

  .mobile-cta-btn:focus,
  .mobile-cta-btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }

  .cta-call {
    background: var(--gradient-gold);
    color: #000;
  }

  .cta-write {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--glass-border);
  }

  .mobile-call-btn {
    display: none;
    /* Hide old single button */
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(199, 159, 31, 0.7);
    }

    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 15px rgba(199, 159, 31, 0);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(199, 159, 31, 0);
    }
  }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ======================================== */
/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #000;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 30px rgba(199, 159, 31, 0.4),
    0 0 20px rgba(199, 159, 31, 0.2);
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .page {
    padding-top: 70px;
    /* Reduced padding for mobile navbar */
  }

  .nav-container {
    top: 8px;
    width: calc(100% - 16px);
    padding: 10px 14px;
    /* Safe area for notched devices */
    top: max(8px, env(safe-area-inset-top));
  }

  .back-to-top {
    bottom: 90px;
    /* Above mobile CTA bar */
    right: 20px;
    z-index: 1100;
  }

  @media (max-width: 768px) {
    .back-to-top {
      bottom: 100px;
      z-index: 1998;
    }
  }

  .nav-logo .logo-text {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 12px;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin-bottom: 2rem;
    text-align: center;
  }


  .service-card,
  .price-card {
    padding: 1.5rem;
  }

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

  .microphone-graphic {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .floating-notes {
    display: none;
    /* Hide on small mobile for better performance */
  }

  .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* ========================================
   RESPONSIVE - LARGE DESKTOP (min-width: 1920px)
   ======================================== */
@media (min-width: 1920px) {
  html {
    font-size: 18px;
  }

  .container {
    max-width: 1600px;
    padding: 0 60px;
  }

  .hero-content {
    max-width: 1600px;
    padding: 0 60px;
  }

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

  .pricing-table {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

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

  .hero-title {
    font-size: 6rem;
  }
}

/* ========================================
   RESPONSIVE - DESKTOP (min-width: 1440px)
   ======================================== */
@media (min-width: 1440px) {
  .hero-content {
    gap: 5rem;
  }

  .about-header {
    gap: 4rem;
  }

  .contact-content {
    gap: 4rem;
  }

  .services-grid {
    gap: 2.5rem;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {

  .navbar,
  .hamburger,
  .hero-buttons,
  .btn,
  .footer {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero,
  section {
    page-break-inside: avoid;
  }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */
/* Skip to main content link for screen readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: #000;
  padding: 1rem;
  text-decoration: none;
  z-index: 10000;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
}

/* Improved color contrast for better readability */
p,
li,
span,
div {
  color: #ffffff;
}

/* Ensure sufficient contrast for links */
a {
  color: var(--muted);
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--gold);
}

/* Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --gold: #ffd700;
    --muted: #ffffff;
    --bg: #000000;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.gold-link {
  color: var(--gold);
  transition: all 0.3s ease;
}

.gold-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* GPU Acceleration for animations */
.hero::before,
.microphone-graphic,
.service-card,
.price-card,
.gallery-item,
.reveal {
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* Tables & Tablets (1024px and below) */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}

/* Tablet Navigation (768px - 992px) */
/* Tablet & Mobile Navigation (992px and below) */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(400px, 50vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(7, 7, 7, 0.98);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(100px + env(safe-area-inset-top)) 32px 32px;
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 1rem 0.75rem;
    font-size: 1.05rem;
    border-radius: 12px;
    width: 100%;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
    padding: 0 20px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
  }

  .microphone-graphic {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .nav-container {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px 16px;
  }

  .nav-logo .logo-text {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .service-card,
  .price-card,
  .collab-card {
    padding: 2rem 1.5rem;
  }

  .about-image-wrapper {
    width: 100%;
  }

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

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

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

/* DJ Page */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.dj-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dj-item:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: rgba(199, 159, 31, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dj-image-wrapper {
  height: 280px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dj-info {
  padding: 2rem;
  text-align: center;
}

/* Collaboration Page */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.collab-card {
  background: var(--panel);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 24px;
  transition: all 0.4s ease;
}

.collab-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* Services Table & Pricing */
.pricing-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.offer-table-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: clamp(1rem, 5vw, 3rem);
  background: var(--glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.offer-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.offer-table th {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: left;
  font-weight: 600;
}

.offer-table td {
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  vertical-align: middle;
}

.offer-table td:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px 0 0 15px;
  color: var(--gold-vibrant);
  font-weight: 700;
  font-size: 1.1rem;
}

.offer-table td:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 15px 15px 0;
  text-align: right;
  color: var(--gold-vibrant);
  font-weight: 800;
  font-size: 1.1rem;
}

.offer-table tr {
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-table tr:hover td {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.offer-table tr:hover {
  transform: scale(1.01);
}

/* Pricing Info CTA Section */
.pricing-info {
  margin-top: 4rem;
  padding: 3rem 2.5rem;
  background: rgba(5, 5, 5, 0.95);
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
  pointer-events: none;
}

.pricing-info h3 {
  font-family: var(--font-header);
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-info p {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-group .btn {
  min-width: 200px;
  padding: 1rem 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-group .btn-primary {
  background: var(--gradient-gold);
  color: #000;
  border: none;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-group .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-group .btn-secondary {
  background: rgba(5, 5, 5, 0.8);
  color: var(--gold);
  border: 2px solid var(--gold);
  backdrop-filter: blur(10px);
}

.btn-group .btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-vibrant);
  color: var(--gold-vibrant);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .pricing-info {
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    max-width: 100%;
  }
}

/* Service Modal */
.service-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  background: #0a0a0a;
  margin: 40px auto;
  max-width: 800px;
  width: 100%;
  padding: clamp(1.5rem, 5vw, 4rem);
  border-radius: 32px;
  border: 1px solid var(--gold);
  position: relative;
  box-shadow: 0 0 100px rgba(212, 175, 55, 0.2);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: var(--gold);
  cursor: pointer;
  line-height: 1;
}

/* Services Table Mobile Optimization */
@media (max-width: 768px) {
  .offer-table thead {
    display: none;
  }

  .offer-table tr {
    display: block;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
  }

  .offer-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0 !important;
    border: none !important;
    background: transparent !important;
    text-align: right !important;
    width: 100% !important;
    font-size: 0.95rem;
  }

  .offer-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-right: 1rem;
  }

  .offer-table td:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-bottom: 1rem !important;
  }

  .offer-table td:first-child::before {
    display: none;
  }
}

/* Artists Section */
.artists-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.8));
}

.artists-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.artist-tag {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  color: #eee;
  transition: all 0.3s ease;
  cursor: default;
  font-weight: 500;
  font-size: 0.95rem;
}

.artist-tag:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

/* ========================================
   MOBILE POLISH & FIXES
   ======================================== */

/* Prevent iOS Zoom on inputs */
@media (max-width: 768px) {

  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Back To Top Z-Index Fix */
.back-to-top {
  z-index: 1500;
  /* Ensure it's above the footer/CTA bar if they overlap */
  bottom: 80px;
  /* Raise slightly for better touch target clearance */
}

/* Mobile Service Cards Polish */
@media (max-width: 768px) {
  .offer-table tr {
    display: flex;
    flex-direction: column;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  .offer-table td {
    display: block !important;
    text-align: left !important;
    padding: 1.25rem !important;
    border: none !important;
    width: 100% !important;
  }

  /* Header Cell (Event Type) */
  .offer-table td:first-child {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    font-size: 1.3rem !important;
    color: var(--gold) !important;
    font-weight: 800;
    padding: 1rem 1.25rem !important;
    text-align: center !important;
  }

  .offer-table td:first-child::before {
    display: none;
  }

  /* Content Cells */
  .offer-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.7;
  }

  /* Scope Description */
  .offer-table td:nth-child(2) {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #eee;
  }

  /* Price Cell */
  .offer-table td:last-child {
    padding-top: 0 !important;
    padding-bottom: 1.5rem !important;
    text-align: right !important;
    font-size: 1.4rem !important;
    color: var(--gold-vibrant) !important;
    font-weight: 700;
  }

  .offer-table td:last-child::before {
    text-align: left;
  }
}