/* ==========================================================================
   GRAPHICS PAGE STYLES - 3-CARD CAROUSEL
   PlayMaker Group - Graphics Portfolio
   ========================================================================== */

/* ==========================================================================
   NAVBAR - ENSURE TRANSPARENT ON LOAD
   ========================================================================== */

.navbar-stadium {
  background: transparent !important;
}

.navbar-stadium.scrolled {
  background: rgba(26, 29, 41, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
}

/* ==========================================================================
   HERO INTRO ANIMATION - HIDE ELEMENTS INITIALLY
   ========================================================================== */

.page-badge,
.hero-main-title,
.hero-subtitle,
.hero-swiper,
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev,
.btn-explore-work {
  opacity: 0;
}

/* ==========================================================================
   HERO SECTION - GRAPHICS CAROUSEL
   ========================================================================== */

.gallery-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) var(--space-lg);
}

/* Gallery Background - NO CHANGES */
.gallery-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  z-index: 0;
}

.gallery-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
}

/* Spotlights - Optimized for performance */
.spotlight {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 208, 63, 0.12) 0%,
    rgba(244, 208, 63, 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  /* GPU acceleration */
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Simplified animation - opacity only for better performance */
  animation: pulse-spotlight 8s ease-in-out infinite;
}

.spotlight-1 {
  width: 800px;
  height: 800px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  animation-delay: 0s;
}

.spotlight-2 {
  width: 600px;
  height: 600px;
  top: 40%;
  left: 20%;
  animation-delay: 2.5s;
}

.spotlight-3 {
  width: 700px;
  height: 700px;
  top: 50%;
  right: 15%;
  animation-delay: 5s;
}

/* Optimized animation - opacity only, no transform/scale */
@keyframes pulse-spotlight {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
}

/* ==========================================================================
   HERO CONTENT WRAPPER
   ========================================================================== */

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}

/* Header Text */
.hero-header {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.page-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(244, 208, 63, 0.15);
  border: 1px solid rgba(244, 208, 63, 0.4);
  border-radius: 30px;
  color: var(--stadium-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
}

.hero-main-title {
  font-size: 64px;
  font-weight: 700;
  font-family: var(--font-headline);
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

/* ==========================================================================
   HERO SWIPER - 9:16 SOLID ASPECT RATIO
   ========================================================================== */

.hero-swiper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.hero-swiper .swiper-wrapper {
  align-items: center;
}

.hero-swiper .swiper-slide {
  width: 280px;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
  opacity: 0.5;
  /* GPU acceleration - avoid blur for better performance */
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-swiper .swiper-slide-active {
  opacity: 1;
  z-index: 10;
  transform: scale(1.1) translateZ(0);
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(244, 208, 63, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(244, 208, 63, 0.1);
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
  /* GPU acceleration for images */
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Optimize image rendering */
  image-rendering: -webkit-optimize-contrast;
}

.hero-swiper .swiper-slide-active img {
  border-color: rgba(244, 208, 63, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(244, 208, 63, 0.3);
}

/* Swiper Navigation Buttons */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(26, 29, 41, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(244, 208, 63, 0.4);
  color: var(--stadium-gold);
  transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
  color: var(--stadium-gold);
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(244, 208, 63, 0.1);
  border-color: var(--stadium-gold);
  transform: scale(1.1);
}

.hero-swiper .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ==========================================================================
   EXPLORE BUTTON
   ========================================================================== */

.btn-explore-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-explore-work {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--money-gradient);
  color: var(--pregame-darkness);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(244, 208, 63, 0.3);
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.btn-explore-work:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 208, 63, 0.5);
  color: var(--pregame-darkness);
}

.btn-explore-work i {
  transition: transform 0.3s ease;
}

.btn-explore-work:hover i {
  transform: translateY(4px);
}

/* ==========================================================================
   DESIGN PHILOSOPHY SECTION
   ========================================================================== */

.design-philosophy-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
  background: var(--pregame-darkness);
}

.philosophy-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Stadium Grid - Same as hero section */
.philosophy-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(244, 208, 63, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(244, 208, 63, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: grid-move 20s linear infinite;
  z-index: 1;
}

.philosophy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(10, 10, 10, 0.3) 70%,
    rgba(10, 10, 10, 0.6) 100%
  );
  z-index: 2;
}

/* Grid animation keyframes */
@keyframes grid-move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}

.philosophy-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(244, 208, 63, 0.1);
  border: 2px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  color: var(--stadium-gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.philosophy-badge i {
  font-size: 18px;
}

.philosophy-title {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-headline);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-2xl);
}

.philosophy-text {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.philosophy-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.philosophy-text p:last-child {
  margin-bottom: 0;
}

.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.philosophy-stat {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: rgba(26, 29, 41, 0.6);
  border: 2px solid rgba(244, 208, 63, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.philosophy-stat:hover {
  border-color: rgba(244, 208, 63, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--money-gradient);
  border-radius: 12px;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 28px;
  color: var(--pregame-darkness);
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.stat-content .stat-number {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-headline);
  color: var(--stadium-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-content .stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 767px) {
  .design-philosophy-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .philosophy-content {
    max-width: 100%;
    padding: 0 var(--space-sm);
  }

  .philosophy-badge {
    font-size: 11px;
    padding: 8px 16px;
    gap: 6px;
  }

  .philosophy-badge i {
    font-size: 14px;
  }

  .philosophy-title {
    font-size: 28px;
    margin-bottom: var(--space-md);
    line-height: 1.3;
  }

  .philosophy-text {
    margin-bottom: var(--space-xl);
  }

  .philosophy-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
  }

  .philosophy-stats {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .philosophy-stat {
    padding: var(--space-lg);
    gap: var(--space-lg);
    flex-direction: row;
    align-items: center;
    border-radius: 12px;
  }

  .philosophy-stat:hover {
    transform: translateY(-3px);
  }

  .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .stat-icon i {
    font-size: 24px;
  }

  .stat-content {
    flex: 1;
    text-align: left;
  }

  .stat-content .stat-number {
    font-size: 28px;
    margin-bottom: 4px;
    line-height: 1;
  }

  .stat-content .stat-label {
    font-size: 11px;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
}

/* ==========================================================================
   PORTFOLIO STATS SECTION
   ========================================================================== */

.portfolio-stats-section {
  padding: var(--space-3xl) 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(244, 208, 63, 0.1);
  border-bottom: 1px solid rgba(244, 208, 63, 0.1);
}

.portfolio-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.stat-badge {
  text-align: center;
  padding: var(--space-lg);
}

.stat-badge .stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-headline);
  background: var(--money-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.stat-badge .stat-label {
  display: block;
  font-size: var(--text-small);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ==========================================================================
   GRAPHICS GALLERY SECTION
   ========================================================================== */

.graphics-gallery-section {
  padding: var(--space-4xl) 0;
  background: var(--pregame-darkness);
}

.graphics-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.graphics-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(244, 208, 63, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 9 / 16;
}

.graphics-gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 208, 63, 0.4);
  box-shadow: 0 12px 40px rgba(244, 208, 63, 0.2);
}

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

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

/* Hidden items - initially completely hidden with transform ready for animation */
.graphics-gallery-item.gallery-item-hidden {
  display: none;
  opacity: 0;
  transform: translateY(50px) scale(0.8) rotateX(-15deg);
  transform-origin: center bottom;
}

/* Item revealed state */
.graphics-gallery-item.revealed {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
}

/* See More Button Container */
.graphics-see-more-container {
  display: flex;
  justify-content: center;
  margin-top: var(--space-3xl);
  width: 100%;
}

.btn-graphics-see-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 40px;
  background: rgba(244, 208, 63, 0.1);
  border: 2px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  color: var(--stadium-gold);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-graphics-see-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(244, 208, 63, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-graphics-see-more:hover::before {
  left: 100%;
}

.btn-graphics-see-more:hover {
  background: var(--money-gradient);
  border-color: var(--stadium-gold);
  color: var(--pregame-darkness);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.3);
}

.btn-graphics-see-more i {
  transition: transform 0.3s ease;
}

.btn-graphics-see-more:hover i {
  transform: translateY(4px);
}

.btn-graphics-see-more.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive */
/* Tablet - See More Button */
@media (min-width: 768px) and (max-width: 1024px) {
  .graphics-see-more-container {
    margin-top: var(--space-2xl);
  }

  .btn-graphics-see-more {
    padding: 14px 32px;
    font-size: 14px;
  }
}

/* Small tablets and large phones */
@media (max-width: 767px) {
  .graphics-gallery-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .graphics-gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* See More Button - Mobile Optimization */
  .graphics-see-more-container {
    margin-top: var(--space-xl);
    padding: 0 var(--space-sm);
  }

  .btn-graphics-see-more {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
    font-size: 13px;
    letter-spacing: 0.5px;
    justify-content: center;
  }

  .btn-graphics-see-more span {
    flex: 1;
    text-align: center;
  }

  .btn-graphics-see-more i {
    flex-shrink: 0;
  }
}

/* ==========================================================================
   LOAD MORE BUTTON
   ========================================================================== */

.portfolio-load-more {
  text-align: center;
  margin-top: var(--space-3xl);
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 40px;
  background: rgba(244, 208, 63, 0.1);
  border: 2px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  color: var(--stadium-gold);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  background: var(--money-gradient);
  border-color: var(--stadium-gold);
  color: var(--pregame-darkness);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.3);
}

.btn-load-more i {
  transition: transform 0.3s ease;
}

.btn-load-more:hover i {
  transform: translateY(4px);
}

/* ==========================================================================
   PRESS CONFERENCE FAQ SECTION
   ========================================================================== */

.faq-section {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--pregame-darkness);
  overflow: hidden;
}

.faq-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Stadium Grid */
.faq-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(244, 208, 63, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(244, 208, 63, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: grid-move 20s linear infinite;
  z-index: 1;
}

/* Vignette Overlay - Same as Philosophy Section */
.faq-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(10, 10, 10, 0.3) 70%,
    rgba(10, 10, 10, 0.6) 100%
  );
  z-index: 2;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  position: relative;
  z-index: 2;
}

.press-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  background: rgba(244, 208, 63, 0.1);
  border: 2px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  color: var(--stadium-gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.press-badge i {
  font-size: 18px;
}

.live-indicator {
  position: relative;
  padding-left: 20px;
}

.live-indicator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(255, 68, 68, 0);
  }
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(26, 29, 41, 0.6);
  border: 2px solid rgba(244, 208, 63, 0.1);
  border-radius: 12px;
  margin-bottom: var(--space-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(244, 208, 63, 0.3);
  transform: translateX(8px);
}

.faq-item.active {
  border-color: rgba(244, 208, 63, 0.6);
  box-shadow: 0 0 30px rgba(244, 208, 63, 0.2);
  background: rgba(26, 29, 41, 0.8);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: rgba(244, 208, 63, 0.05);
}

.question-badge {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--money-gradient);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: var(--pregame-darkness);
  font-family: var(--font-headline);
}

.question-text {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.question-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stadium-gold);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .question-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 var(--space-xl) var(--space-xl)
    calc(var(--space-xl) + 50px + var(--space-lg));
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: var(--space-4xl) 0;
  }

  .faq-header {
    margin-bottom: var(--space-3xl);
  }

  .press-badge {
    font-size: 12px;
    padding: 10px 20px;
  }

  .faq-question {
    padding: var(--space-lg);
    gap: var(--space-md);
  }

  .question-badge {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .question-text {
    font-size: 16px;
  }

  .question-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg)
      calc(var(--space-lg) + 40px + var(--space-md));
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-item:hover {
    transform: translateX(4px);
  }
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  background: var(--pregame-darkness);
  overflow: hidden;
}

/* Diagonal Stripe Background - Same as intro section */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(244, 208, 63, 0.02) 35px,
    rgba(244, 208, 63, 0.02) 70px
  );
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-headline);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.cta-text {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 10000;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(244, 208, 63, 0.1);
  border: 2px solid rgba(244, 208, 63, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stadium-gold);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--stadium-gold);
  color: var(--pregame-darkness);
  transform: scale(1.1);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-image-container {
  background: rgba(26, 29, 41, 0.5);
  border: 2px solid rgba(244, 208, 63, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.lightbox-image-container img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.lightbox-info {
  padding: var(--space-xl);
  background: rgba(26, 29, 41, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(244, 208, 63, 0.2);
}

.lightbox-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.lightbox-category {
  font-size: var(--text-small);
  color: var(--stadium-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ==========================================================================
   CONTACT SECTION - ALWAYS VISIBLE
   ========================================================================== */

.contact-section {
  opacity: 1;
  padding: var(--space-3xl) 0;
}

/* ==========================================================================
   RESPONSIVE - TABLET (768px - 1024px)
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-main-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  /* Explore Button - Tablet */
  .btn-explore-work {
    padding: 14px 32px;
    font-size: 14px;
  }

  .carousel-card.side {
    width: 160px;
    opacity: 0.35;
    transform: scale(0.8);
  }

  .carousel-card.featured {
    width: 280px;
  }

  .carousel-nav-prev {
    left: 10px;
  }

  .carousel-nav-next {
    right: 10px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-category {
    font-size: 11px;
  }

  .graphics-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

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

  /* Philosophy Section - Tablet Optimization */
  .philosophy-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 100%;
  }

  .philosophy-stat {
    padding: var(--space-lg);
    gap: var(--space-md);
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stat-icon {
    width: 52px;
    height: 52px;
  }

  .stat-icon i {
    font-size: 24px;
  }

  .stat-content {
    align-items: center;
    text-align: center;
  }

  .stat-content .stat-number {
    font-size: 30px;
  }

  .stat-content .stat-label {
    font-size: 12px;
  }

  /* Make the 3rd card span both columns and center it */
  .philosophy-stat:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - var(--space-lg) / 2);
    margin: 0 auto;
  }

  .stat-badge .stat-number {
    font-size: 40px;
  }

  /* CTA Section - Tablet Optimization */
  .cta-section {
    padding: var(--space-4xl) var(--space-lg);
  }

  .cta-content {
    max-width: 700px;
    padding: 0 var(--space-md);
  }

  .cta-title {
    font-size: 40px;
    margin-bottom: var(--space-md);
  }

  .cta-text {
    font-size: 18px;
    margin-bottom: var(--space-xl);
  }

  .cta-buttons {
    gap: var(--space-md);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* ==========================================================================
   PERFORMANCE OPTIMIZATIONS - MOBILE & TABLET
   ========================================================================== */

/* Mobile & Tablet - Reduce expensive effects */
@media (max-width: 1024px) {
  /* Disable blur filter for performance */
  .hero-swiper .swiper-slide {
    filter: none !important;
    opacity: 0.6;
  }

  .hero-swiper .swiper-slide-active {
    opacity: 1;
    filter: none !important;
    transform: none !important; /* Remove scale transform */
  }

  /* Simplify box shadows */
  .hero-swiper .swiper-slide img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-radius: 12px; /* Reduce from 20px */
  }

  .hero-swiper .swiper-slide-active img {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  }

  /* Faster transitions */
  .hero-swiper .swiper-slide,
  .hero-swiper .swiper-slide img {
    transition: all 0.3s ease !important;
  }

  /* Optimize navigation buttons */
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    backdrop-filter: none; /* Remove expensive blur */
    background: rgba(26, 29, 41, 0.98);
  }

  .hero-swiper .swiper-button-prev:after,
  .hero-swiper .swiper-button-next:after {
    font-size: 18px;
  }

  /* Disable spotlight animations for performance */
  .spotlight {
    animation: none !important;
  }

  .spotlight-1 {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }

  .spotlight-2,
  .spotlight-3 {
    opacity: 0.2;
  }
}

/* ==========================================================================
   RESPONSIVE - MOBILE (<768px)
   ========================================================================== */

@media (max-width: 768px) {
  .gallery-hero {
    min-height: 100vh;
    padding: calc(80px + var(--space-lg)) var(--space-md) var(--space-2xl);
  }

  .hero-content-wrapper {
    gap: var(--space-2xl);
  }

  .page-badge {
    font-size: 10px;
    padding: 6px 16px;
  }

  .hero-main-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .carousel-container {
    max-width: 100%;
  }

  .carousel-track-wrapper {
    height: 500px;
  }

  .carousel-track {
    gap: var(--space-md);
  }

  .carousel-card.side {
    width: 120px;
    opacity: 0.3;
    transform: scale(0.75);
  }

  .carousel-card.featured {
    width: 260px;
  }

  .carousel-nav-btn {
    width: 50px;
    height: 50px;
  }

  .carousel-nav-prev {
    left: 10px;
  }

  .carousel-nav-next {
    right: 10px;
  }

  .carousel-nav-btn svg {
    width: 22px;
    height: 22px;
  }

  .card-overlay {
    padding: var(--space-lg);
  }

  .card-title {
    font-size: 18px;
  }

  .card-category {
    font-size: 11px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dot.active {
    width: 24px;
  }

  .btn-explore-work {
    padding: 12px 24px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }

  .scroll-indicator {
    bottom: var(--space-xl);
  }

  .portfolio-stats {
    gap: var(--space-xl);
  }

  .stat-badge .stat-number {
    font-size: 32px;
  }

  .graphics-portfolio-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  /* CTA Section - Mobile Optimization */
  .cta-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .cta-content {
    max-width: 100%;
    padding: 0 var(--space-sm);
  }

  .cta-title {
    font-size: 26px;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
  }

  .cta-text {
    font-size: 15px;
    margin-bottom: var(--space-lg);
    line-height: 1.5;
  }

  .cta-buttons {
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
  }

  .cta-buttons .btn-hero-primary,
  .cta-buttons .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  .lightbox-content {
    max-width: 95vw;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .lightbox-prev {
    left: 10px;
    transform: translateY(-50%);
  }

  .lightbox-next {
    right: 10px;
    transform: translateY(-50%);
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .lightbox-info {
    padding: var(--space-lg);
  }

  .lightbox-title {
    font-size: 18px;
  }
}

/* ==========================================================================
   PERFORMANCE OPTIMIZATIONS
   ========================================================================== */

/* Respect user's motion preferences - Disable animations for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .spotlight {
    animation: none !important;
  }
}

/* Disable expensive effects on low-end devices */
@media (max-width: 768px) and (hover: none) {
  /* Simplify spotlight animations on touch devices */
  .spotlight-2,
  .spotlight-3 {
    display: none; /* Hide extra spotlights on mobile for better performance */
  }

  .spotlight {
    animation-duration: 12s; /* Slower animation on mobile */
  }

  /* Disable hover effects on touch devices */
  .hero-swiper .swiper-slide:hover,
  .graphics-gallery-item:hover {
    transform: none;
  }
}
