/* ==========================================
   TGF URUGUAY - THE GROEING FACTORY
   Simpsons & Futurama Theme Styles
   ========================================== */

/* CSS Variables */
:root {
  /* Simpson Colors */
  --simpsons-yellow: #ffd90f;
  --simpsons-yellow-light: #fff176;
  --simpsons-yellow-dark: #f9a825;
  --simpsons-blue: #70d1fe;
  --simpsons-blue-dark: #0d47a1;
  --simpsons-pink: #ff69b4;
  --simpsons-orange: #ff6f00;
  --simpsons-brown: #8d6e63;

  /* Futurama Colors */
  --futurama-green: #7fff00;
  --futurama-purple: #9c27b0;
  --futurama-red: #ff1744;
  --futurama-teal: #00bcd4;

  /* Neutrals */
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--simpsons-yellow) 0%, var(--simpsons-orange) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--futurama-green) 0%, var(--futurama-teal) 100%);
  --gradient-dark: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  --gradient-hero: linear-gradient(180deg, #87ceeb 0%, #70d1fe 50%, #98fb98 100%);

  /* Typography */
  --font-display: 'Simpsons', 'Bangers', cursive;
  --font-accent: 'Simpsons', 'Permanent Marker', cursive;
  --font-body: 'Comic Neue', cursive;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(255, 217, 15, 0.5);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
  background: var(--simpsons-yellow);
  border-radius: var(--radius-full);
  border: 3px solid var(--gray-200);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--simpsons-yellow-dark);
}

/* Selection */
::selection {
  background: var(--simpsons-yellow);
  color: var(--black);
}

/* Custom Cursor */
.custom-cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--simpsons-yellow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background-color 0.2s ease;
    transform: translate(-50%, -50%);
  }

  .custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(255, 217, 15, 0.3);
  }
}

/* Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 20px;
  animation: float-particle 15s infinite linear;
  opacity: 0.6;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--spacing-md) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-sm) 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  transition: transform var(--transition-base);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl);
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  padding: var(--spacing-sm) 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--simpsons-yellow-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--spacing-sm);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gray-800);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 var(--spacing-sm);
  }

  .logo-img {
    height: 28px;
    max-width: 150px;
    object-fit: contain;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-xl);
    gap: var(--spacing-lg);
    transform: translateY(-150%);
    opacity: 0;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Clouds */
.cloud {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  opacity: 0.9;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: var(--white);
  border-radius: 50%;
}

.cloud-1 {
  width: 200px;
  height: 60px;
  top: 15%;
  left: 10%;
  animation: float-cloud 30s infinite linear;
}

.cloud-1::before {
  width: 80px;
  height: 80px;
  top: -40px;
  left: 20px;
}

.cloud-1::after {
  width: 60px;
  height: 60px;
  top: -30px;
  right: 30px;
}

.cloud-2 {
  width: 150px;
  height: 45px;
  top: 25%;
  right: 15%;
  animation: float-cloud 25s infinite linear reverse;
}

.cloud-2::before {
  width: 60px;
  height: 60px;
  top: -30px;
  left: 15px;
}

.cloud-2::after {
  width: 45px;
  height: 45px;
  top: -20px;
  right: 20px;
}

.cloud-3 {
  width: 180px;
  height: 50px;
  top: 35%;
  left: 50%;
  animation: float-cloud 35s infinite linear;
}

.cloud-3::before {
  width: 70px;
  height: 70px;
  top: -35px;
  left: 25px;
}

.cloud-3::after {
  width: 50px;
  height: 50px;
  top: -25px;
  right: 35px;
}

@keyframes float-cloud {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(calc(100vw + 100%));
  }
}

/* Floating elements */
.donut,
.beer {
  position: absolute;
  font-size: 3rem;
  animation: float-item 6s infinite ease-in-out;
  z-index: 2;
}

.donut-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.donut-2 {
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
}

.beer-1 {
  bottom: 20%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes float-item {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Hero Characters */
.hero-characters {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.character-group {
  position: absolute;
  width: 100%;
  height: 100%;
}

.character {
  position: absolute;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.5s ease;
  animation: character-float 4s ease-in-out infinite;
}

.character:hover {
  transform: scale(1.1);
}

/* Simpsons Characters Positions */
.character-homer {
  width: 180px;
  height: auto;
  bottom: 5%;
  left: 3%;
  animation-delay: 0s;
  transform: scaleX(-1);
}

@keyframes character-float-flipped {
  0%,
  100% {
    transform: scaleX(-1) translateY(0);
  }
  50% {
    transform: scaleX(-1) translateY(-15px);
  }
}

.character-homer {
  animation: character-float-flipped 4s ease-in-out infinite;
}

.character-bart {
  width: 120px;
  height: auto;
  top: 25%;
  right: 5%;
  animation-delay: 0.5s;
}

.character-lisa {
  width: 110px;
  height: auto;
  bottom: 15%;
  right: 8%;
  animation-delay: 1s;
}

.character-marge {
  width: 160px;
  height: auto;
  top: 20%;
  left: 5%;
  animation-delay: 1.5s;
}

/* Futurama Characters Positions */
.character-fry {
  width: 150px;
  height: auto;
  bottom: 10%;
  left: 5%;
  animation-delay: 0s;
}

.character-bender {
  width: 160px;
  height: auto;
  top: 20%;
  right: 3%;
  animation-delay: 0.5s;
}

.character-leela {
  width: 140px;
  height: auto;
  bottom: 15%;
  right: 5%;
  animation: character-float-flipped 4s ease-in-out infinite;
  animation-delay: 1s;
  transform: scaleX(-1);
}

.character-professor {
  width: 130px;
  height: auto;
  top: 25%;
  left: 3%;
  animation-delay: 1.5s;
}

@keyframes character-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Characters */
@media (max-width: 1200px) {
  .character-homer,
  .character-fry {
    width: 140px;
    left: 2%;
  }

  .character-marge,
  .character-professor {
    width: 120px;
    top: 15%;
  }

  .character-bart,
  .character-bender {
    width: 100px;
  }

  .character-lisa,
  .character-leela {
    width: 90px;
  }
}

@media (max-width: 992px) {
  .character {
    opacity: 0.7;
  }

  .character-homer,
  .character-fry {
    width: 120px;
    bottom: 3%;
  }

  .character-marge,
  .character-professor {
    width: 100px;
    top: 12%;
    left: 1%;
  }

  .character-bart,
  .character-bender {
    width: 80px;
    top: 15%;
    right: 2%;
  }

  .character-lisa,
  .character-leela {
    width: 70px;
    bottom: 10%;
    right: 2%;
  }
}

@media (max-width: 768px) {
  .hero-characters {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--spacing-xl);
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: var(--simpsons-yellow);
  color: var(--black);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  animation: bounce 2s infinite;
  box-shadow: var(--shadow-md);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
}

.title-line-1 {
  display: block;
  font-size: 3.5rem;
  color: var(--simpsons-blue-dark);
  text-shadow: 3px 3px 0 var(--white);
  letter-spacing: 3px;
}

.title-line-2 {
  display: block;
  font-size: 6rem;
  color: var(--simpsons-yellow);
  text-shadow: 5px 5px 0 var(--black), -2px -2px 0 var(--black), 2px -2px 0 var(--black), -2px 2px 0 var(--black);
  animation: glow 2s ease-in-out infinite alternate;
  letter-spacing: 4px;
}

.title-line-3 {
  display: block;
  font-size: 3rem;
  color: var(--futurama-green);
  text-shadow: 3px 3px 0 var(--black);
  font-family: var(--font-accent);
  letter-spacing: 2px;
}

@keyframes glow {
  from {
    text-shadow: 4px 4px 0 var(--black), -2px -2px 0 var(--black), 2px -2px 0 var(--black), -2px 2px 0 var(--black),
      0 0 20px rgba(255, 217, 15, 0.5);
  }

  to {
    text-shadow: 4px 4px 0 var(--black), -2px -2px 0 var(--black), 2px -2px 0 var(--black), -2px 2px 0 var(--black),
      0 0 40px rgba(255, 217, 15, 0.8);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: var(--spacing-2xl);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--black);
  box-shadow: var(--shadow-md), 0 0 20px rgba(255, 217, 15, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 217, 15, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-800);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--gray-100);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-3xl);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--simpsons-yellow);
  text-shadow: 2px 2px 0 var(--black);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  z-index: 10;
  animation: fade-bounce 2s infinite;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--gray-700);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes fade-bounce {
  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-header.left {
  text-align: left;
}

.section-header.light {
  color: var(--white);
}

.section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.section-badge {
  display: inline-block;
  background: rgba(255, 217, 15, 0.2);
  color: var(--simpsons-yellow-dark);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.section-header.light .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-header.light .section-title {
  color: var(--white);
}

.section-title .highlight {
  color: var(--simpsons-yellow);
  text-shadow: 2px 2px 0 var(--black);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  padding: var(--spacing-3xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--gray-100) 0%, transparent 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-xl);
}

.frame-decoration {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 4px solid var(--simpsons-yellow);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-illustration {
  height: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.springfield-scene {
  position: relative;
  width: 100%;
  height: 100%;
}

.power-plant {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cooling-tower {
  width: 120px;
  height: 180px;
  background: linear-gradient(to bottom, var(--gray-300), var(--gray-400));
  border-radius: 60px 60px 0 0;
  position: relative;
  margin: 0 auto;
}

.cooling-tower::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gray-800);
  border-radius: 50%;
}

.steam {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  animation: steam-rise 3s infinite ease-out;
}

.steam-2 {
  animation-delay: 1s;
  width: 30px;
  height: 30px;
}

.steam-3 {
  animation-delay: 2s;
  width: 35px;
  height: 35px;
}

@keyframes steam-rise {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translateX(-50%) translateY(-100px) scale(2);
    opacity: 0;
  }
}

.plant-building {
  width: 200px;
  height: 80px;
  background: var(--gray-500);
  margin-top: 10px;
  position: relative;
}

.plant-building::before {
  content: '☢️';
  position: absolute;
  font-size: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sun-springfield {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--simpsons-yellow);
  border-radius: 50%;
  box-shadow: 0 0 40px var(--simpsons-yellow);
  animation: pulse-sun 3s infinite ease-in-out;
}

@keyframes pulse-sun {
  0%,
  100% {
    box-shadow: 0 0 40px var(--simpsons-yellow);
  }

  50% {
    box-shadow: 0 0 60px var(--simpsons-yellow);
  }
}

/* Transformation Demo */
.transformation-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  height: 100%;
  padding: var(--spacing-xl);
}

.photo-side,
.simpson-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.photo-placeholder,
.simpson-placeholder {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition-base);
}

.photo-placeholder {
  background: var(--white);
  color: var(--gray-600);
  border: 3px dashed var(--gray-400);
}

.photo-placeholder i {
  font-size: 3rem;
  color: var(--gray-400);
}

.simpson-placeholder {
  background: var(--simpsons-yellow);
  color: var(--black);
  border: 3px solid var(--black);
  box-shadow: var(--shadow-lg);
}

.simpson-placeholder .yellow-face {
  font-size: 3rem;
}

.arrow-transform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.arrow-transform i {
  font-size: 2rem;
  color: var(--simpsons-yellow);
  animation: pulse-magic 1.5s infinite;
}

@keyframes pulse-magic {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px var(--simpsons-yellow);
  }

  50% {
    transform: scale(1.2);
    text-shadow: 0 0 20px var(--simpsons-yellow);
  }
}

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
}

.float-card {
  position: absolute;
  background: var(--white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.85rem;
  font-weight: 700;
  animation: float-card 4s infinite ease-in-out;
}

.float-card i {
  color: var(--simpsons-yellow);
}

.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: -30px;
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-text {
  padding-left: var(--spacing-xl);
}

.about-intro {
  margin-bottom: var(--spacing-xl);
}

.lead {
  font-size: 1.25rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.feature {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature:hover {
  background: var(--gray-100);
  transform: translateX(10px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.25rem;
  color: var(--black);
}

.feature-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: var(--spacing-xs);
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.quote-box {
  background: linear-gradient(135deg, var(--simpsons-yellow) 0%, var(--simpsons-orange) 100%);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  position: relative;
}

.quote-box i {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 15px;
  left: 15px;
}

.quote-box p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--black);
  margin-left: var(--spacing-xl);
}

.quote-note {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-800);
  margin-top: var(--spacing-sm);
  margin-left: var(--spacing-xl);
  font-style: italic;
}

@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .about-text {
    padding-left: 0;
  }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  padding: var(--spacing-3xl) 0;
  background: var(--gray-100);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  background: var(--gradient-primary);
}

.service-card.featured::before {
  background: var(--black);
}

.featured-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--black);
  color: var(--simpsons-yellow);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-icon {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: var(--spacing-lg);
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--simpsons-yellow);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  transform: rotate(45deg);
}

.service-card.featured .icon-bg {
  background: var(--black);
  opacity: 0.3;
}

.service-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
  color: var(--simpsons-yellow-dark);
}

.service-card.featured .service-icon i {
  color: var(--black);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-card.featured h3 {
  color: var(--black);
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-lg);
}

.service-card.featured p {
  color: var(--gray-800);
}

.service-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: var(--spacing-sm);
}

.service-card.featured .service-features li {
  color: var(--gray-800);
}

.service-features i {
  color: var(--futurama-green);
  font-size: 0.8rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--simpsons-yellow-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap var(--transition-base);
}

.service-card.featured .service-link {
  color: var(--black);
}

.service-link:hover {
  gap: var(--spacing-md);
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--simpsons-yellow);
  text-shadow: 2px 2px 0 var(--black);
  margin-bottom: var(--spacing-md);
  letter-spacing: 2px;
}

.service-card.featured .service-price {
  color: var(--black);
  text-shadow: none;
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
  padding: var(--spacing-3xl) 0;
  background: var(--gradient-dark);
  position: relative;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--simpsons-yellow);
  border-color: var(--simpsons-yellow);
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: all var(--transition-base);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.hidden {
  display: none;
}

.gallery-image {
  width: 100%;
  height: 100%;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.emoji-placeholder {
  font-size: 4rem;
}

.gallery-item.large .emoji-placeholder {
  font-size: 6rem;
}

.img-label {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gallery color themes */
.simpsons-1 {
  background: linear-gradient(135deg, #ffd90f, #f9a825);
}

.simpsons-2 {
  background: linear-gradient(135deg, #7fff00, #32cd32);
}

.simpsons-3 {
  background: linear-gradient(135deg, #deb887, #d2691e);
}

.futurama-1 {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.futurama-2 {
  background: linear-gradient(135deg, #4a4a4a, #2d2d2d);
}

.futurama-3 {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.project-1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.project-2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.family-large {
  background: linear-gradient(135deg, #70d1fe, #4fc3f7);
}

.couple-1 {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.couple-2 {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.pet-1 {
  background: linear-gradient(135deg, #8d6e63, #6d4c41);
}

.pet-2 {
  background: linear-gradient(135deg, #ff9800, #f57c00);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  padding: var(--spacing-lg);
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 2;
}

.gallery-overlay h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-md);
}

.gallery-btn {
  width: 45px;
  height: 45px;
  background: var(--simpsons-yellow);
  border: none;
  border-radius: 50%;
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-btn:hover {
  transform: scale(1.1);
  background: var(--white);
}

@media (max-width: 968px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }

  .gallery-item {
    flex: 0 0 calc(50% - var(--spacing-xs));
    aspect-ratio: 1/1;
  }

  .gallery-item.large {
    flex: 0 0 100%;
    aspect-ratio: 16/9;
  }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  padding: var(--spacing-3xl) 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  gap: var(--spacing-xl);
  transition: transform var(--transition-slow);
}

.testimonial-card {
  flex: 0 0 calc(50% - var(--spacing-lg));
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  margin-bottom: var(--spacing-lg);
}

.stars {
  margin-bottom: var(--spacing-md);
}

.stars i {
  color: var(--simpsons-yellow);
  font-size: 1rem;
}

.testimonial-content p {
  font-size: 1rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.author-avatar.homer {
  background: var(--simpsons-yellow);
  color: var(--black);
}

.author-avatar.professor {
  background: var(--futurama-green);
  color: var(--black);
}

.author-avatar.fry {
  background: var(--simpsons-orange);
}

.author-avatar.burns {
  background: var(--gray-800);
}

.author-avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--simpsons-yellow);
  background: var(--simpsons-yellow);
  flex-shrink: 0;
}

[data-theme='futurama'] .author-avatar-img {
  border-color: var(--futurama-green);
  background: var(--futurama-purple);
}

.author-info h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray-900);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.slider-btn {
  width: 45px;
  height: 45px;
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--simpsons-yellow);
  border-color: var(--simpsons-yellow);
}

.slider-dots {
  display: flex;
  gap: var(--spacing-sm);
}

.slider-dot {
  width: 10px;
  height: 10px;
  background: var(--gray-300);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-dot.active {
  background: var(--simpsons-yellow);
  width: 30px;
  border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .testimonial-track {
    flex-wrap: wrap;
    gap: var(--spacing-md);
    transform: none !important;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-video {
    max-height: 200px;
  }

  .slider-nav,
  .slider-dots {
    display: none;
  }
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

.contact-info {
  padding-right: var(--spacing-xl);
}

.contact-details {
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.contact-item {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--black);
  font-size: 1.25rem;
}

.contact-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: var(--spacing-xs);
}

.contact-text p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  text-decoration: none;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--simpsons-yellow);
  color: var(--black);
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-xl);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  top: 50%;
  left: var(--spacing-md);
  transform: translateY(-50%);
  color: var(--gray-400);
  transition: color var(--transition-base);
  z-index: 1;
}

.textarea-wrapper i {
  top: var(--spacing-md);
  transform: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: var(--spacing-md);
  padding-left: calc(var(--spacing-md) * 3);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
  background: var(--white);
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

.input-wrapper label {
  position: absolute;
  top: 50%;
  left: calc(var(--spacing-md) * 3);
  transform: translateY(-50%);
  color: var(--gray-500);
  pointer-events: none;
  transition: all var(--transition-base);
  background: var(--white);
  padding: 0 var(--spacing-xs);
}

.textarea-wrapper label {
  top: var(--spacing-md);
  transform: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--simpsons-yellow);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 217, 15, 0.2);
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.8rem;
  color: var(--simpsons-yellow-dark);
}

.textarea-wrapper input:focus + label,
.textarea-wrapper input:not(:placeholder-shown) + label,
.textarea-wrapper textarea:focus + label,
.textarea-wrapper textarea:not(:placeholder-shown) + label {
  top: -8px;
}

.input-wrapper input:focus ~ i,
.input-wrapper select:focus ~ i,
.input-wrapper textarea:focus ~ i {
  color: var(--simpsons-yellow-dark);
}

.btn-submit {
  grid-column: span 2;
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--gradient-primary);
  border: none;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 217, 15, 0.4);
}

.btn-submit.loading span,
.btn-submit.loading i {
  opacity: 0;
}

.btn-loader {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid var(--black);
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 0;
  animation: spin 1s linear infinite;
}

.btn-submit.loading .btn-loader {
  opacity: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width,
  .btn-submit {
    grid-column: span 1;
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  position: relative;
  padding-top: 100px;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
}

.footer-wave svg {
  width: 100%;
  height: 100px;
  fill: var(--white);
  transform: scaleY(-1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 1px solid var(--gray-800);
}

.footer-brand {
  padding-right: var(--spacing-xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.footer-logo-img {
  height: 45px;
  width: auto;
}

@media (max-width: 768px) {
  .footer-logo {
    margin: 10px 0;
  }
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--simpsons-yellow);
  color: var(--black);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.footer-links a:hover {
  color: var(--simpsons-yellow);
  padding-left: var(--spacing-sm);
}

.footer-newsletter h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

.footer-newsletter p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
}

.newsletter-form input {
  flex: 1;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--gray-700);
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  border-color: var(--simpsons-yellow);
  outline: none;
}

.newsletter-form button {
  width: 45px;
  height: 45px;
  background: var(--simpsons-yellow);
  border: none;
  border-radius: var(--radius-lg);
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition-base);
}

.newsletter-form button:hover {
  transform: translateX(3px);
}

.footer-bottom {
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.easter-egg {
  margin-top: var(--spacing-sm);
  font-size: 0.8rem !important;
  opacity: 0.6;
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.donut-loader {
  font-size: 4rem;
  animation: spin 2s linear infinite, bounce 0.5s ease-in-out infinite;
}

.loader p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--simpsons-yellow);
  margin-top: var(--spacing-md);
  text-shadow: 2px 2px 0 var(--black);
}

/* ==========================================
   RESPONSIVE TYPOGRAPHY
   ========================================== */
@media (max-width: 768px) {
  .title-line-1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .title-line-2 {
    font-size: 4rem;
    letter-spacing: 3px;
  }

  .title-line-3 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: 2rem;
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-stats {
    gap: var(--spacing-xl);
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* ==========================================
   ANIMATIONS ON SCROLL
   ========================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay='100'] {
  transition-delay: 100ms;
}

[data-aos-delay='200'] {
  transition-delay: 200ms;
}

[data-aos-delay='300'] {
  transition-delay: 300ms;
}

[data-aos-delay='400'] {
  transition-delay: 400ms;
}

[data-aos-delay='500'] {
  transition-delay: 500ms;
}

[data-aos-delay='600'] {
  transition-delay: 600ms;
}

[data-aos-delay='700'] {
  transition-delay: 700ms;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: var(--spacing-md);
}

.mt-2 {
  margin-top: var(--spacing-xl);
}

.mt-3 {
  margin-top: var(--spacing-2xl);
}

.mb-1 {
  margin-bottom: var(--spacing-md);
}

.mb-2 {
  margin-bottom: var(--spacing-xl);
}

.mb-3 {
  margin-bottom: var(--spacing-2xl);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   THEME SYSTEM - SIMPSONS/FUTURAMA
   ========================================== */

/* Theme Switch */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.theme-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all var(--transition-base);
}

.simpsons-label {
  color: var(--simpsons-yellow);
  text-shadow: 1px 1px 0 var(--black);
}

.futurama-label {
  color: var(--gray-400);
}

.theme-switch {
  position: relative;
  width: 70px;
  height: 36px;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--simpsons-yellow);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  border: 2px solid var(--black);
  overflow: hidden;
}

.theme-switch .slider::before {
  content: '';
  position: absolute;
  height: 28px;
  width: 28px;
  left: 2px;
  bottom: 2px;
  background: var(--white);
  border-radius: 50%;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.slider-icon {
  position: absolute;
  font-size: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all var(--transition-base);
  z-index: 1;
}

.simpsons-icon {
  left: 8px;
  opacity: 1;
}

.futurama-icon {
  right: 8px;
  opacity: 0.3;
}

.theme-switch input:checked + .slider {
  background: var(--futurama-purple);
}

.theme-switch input:checked + .slider::before {
  transform: translateX(34px);
}

.theme-switch input:checked + .slider .simpsons-icon {
  opacity: 0.3;
}

.theme-switch input:checked + .slider .futurama-icon {
  opacity: 1;
}

/* Theme visibility classes */
[data-theme='simpsons'] .futurama-text,
[data-theme='simpsons'] .futurama-element {
  display: none !important;
}

[data-theme='futurama'] .simpsons-text,
[data-theme='futurama'] .simpsons-element {
  display: none !important;
}

/* Futurama theme colors */
[data-theme='futurama'] {
  --theme-primary: var(--futurama-purple);
  --theme-secondary: var(--futurama-green);
  --theme-accent: var(--futurama-teal);
}

[data-theme='futurama'] .hero {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

[data-theme='futurama'] .cloud {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme='futurama'] .cloud::before,
[data-theme='futurama'] .cloud::after {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme='futurama'] .hero-badge {
  background: var(--futurama-green);
  color: var(--black);
}

[data-theme='futurama'] .title-line-2 {
  color: var(--futurama-green);
  text-shadow: 4px 4px 0 var(--black), 0 0 20px rgba(127, 255, 0, 0.5);
}

[data-theme='futurama'] .btn-primary {
  background: linear-gradient(135deg, var(--futurama-green) 0%, var(--futurama-teal) 100%);
  box-shadow: var(--shadow-md), 0 0 20px rgba(127, 255, 0, 0.3);
}

[data-theme='futurama'] .btn-primary:hover {
  box-shadow: var(--shadow-lg), 0 0 30px rgba(127, 255, 0, 0.5);
}

[data-theme='futurama'] .section-badge {
  background: rgba(127, 255, 0, 0.2);
  color: var(--futurama-green);
}

[data-theme='futurama'] .highlight {
  color: var(--futurama-green);
  text-shadow: 2px 2px 0 var(--black);
}

[data-theme='futurama'] .image-frame {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

[data-theme='futurama'] .frame-decoration {
  border-color: var(--futurama-green);
}

[data-theme='futurama'] .result-placeholder {
  background: var(--futurama-purple);
  border-color: var(--futurama-green);
}

[data-theme='futurama'] .feature-icon {
  background: linear-gradient(135deg, var(--futurama-green), var(--futurama-teal));
}

[data-theme='futurama'] .quote-box {
  background: linear-gradient(135deg, var(--futurama-purple), #4a148c);
}

[data-theme='futurama'] .quote-box p {
  color: var(--white);
}

[data-theme='futurama'] .service-card.featured {
  background: linear-gradient(135deg, var(--futurama-green), var(--futurama-teal));
}

[data-theme='futurama'] .service-price {
  color: var(--futurama-green);
}

[data-theme='futurama'] .gallery {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
}

[data-theme='futurama'] .back-to-top {
  background: linear-gradient(135deg, var(--futurama-green), var(--futurama-teal));
}

[data-theme='futurama'] .loading-screen {
  background: #1a1a2e;
}

[data-theme='futurama'] .loader p {
  color: var(--futurama-green);
}

[data-theme='futurama'] .futurama-label {
  color: var(--futurama-green);
  text-shadow: 1px 1px 0 var(--black);
}

[data-theme='futurama'] .simpsons-label {
  color: var(--gray-400);
  text-shadow: none;
}

/* Floating elements for themes */
.floating-element {
  position: absolute;
  font-size: 3rem;
  animation: float-item 6s infinite ease-in-out;
  z-index: 2;
}

.element-1 {
  top: 20%;
  right: 10%;
}

.element-2 {
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
}

.element-3 {
  bottom: 20%;
  right: 20%;
  animation-delay: 1s;
}

/* Result side in transformation demo */
.result-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.result-placeholder {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--simpsons-yellow);
  color: var(--black);
  border: 3px solid var(--black);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.result-emoji {
  font-size: 3rem;
}

/* ==========================================
   SHIPPING INFO
   ========================================== */
.shipping-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.shipping-info .shipping-option {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.shipping-info .shipping-option i {
  font-size: 2rem;
  color: var(--simpsons-yellow);
}

[data-theme='futurama'] .shipping-info .shipping-option i {
  color: var(--futurama-green);
}

.shipping-info .shipping-option h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: var(--spacing-xs);
}

.shipping-info .shipping-option p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.shipping-divider {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .shipping-info {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .shipping-divider {
    display: none;
  }
}

/* ==========================================
   ORDER FORM STYLES
   ========================================== */
.order-form-container {
  max-width: 650px;
  margin: 0 auto;
}

.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-lg);
}

.form-section {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--gray-200);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: var(--spacing-sm);
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gray-900);
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  letter-spacing: 0.5px;
}

.form-section-title i {
  color: var(--simpsons-yellow);
  font-size: 0.8rem;
}

[data-theme='futurama'] .form-section-title i {
  color: var(--futurama-green);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.order-form .form-group {
  margin-bottom: var(--spacing-sm);
}

.order-form label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 4px;
  font-size: 0.8rem;
}

.order-form input[type='text'],
.order-form input[type='tel'],
.order-form input[type='email'] {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.order-form input:focus {
  border-color: var(--simpsons-yellow);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 217, 15, 0.2);
}

[data-theme='futurama'] .order-form input:focus {
  border-color: var(--futurama-green);
  box-shadow: 0 0 0 3px rgba(127, 255, 0, 0.2);
}

.input-hint {
  display: block;
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
  text-align: center;
}

.file-upload-wrapper input[type='file'] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 0.85rem;
}

.file-upload-button:hover {
  border-color: var(--simpsons-yellow);
  background: rgba(255, 217, 15, 0.1);
}

[data-theme='futurama'] .file-upload-button:hover {
  border-color: var(--futurama-green);
  background: rgba(127, 255, 0, 0.1);
}

.file-upload-button i {
  font-size: 1.1rem;
  color: var(--gray-500);
}

.file-name {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.photo-preview {
  margin-top: var(--spacing-xs);
  text-align: center;
  position: relative;
  display: inline-block;
}

.photo-preview img {
  max-width: 80px;
  max-height: 80px;
  border-radius: var(--radius-md);
  border: 2px solid var(--simpsons-yellow);
  object-fit: cover;
}

[data-theme='futurama'] .photo-preview img {
  border-color: var(--futurama-green);
}

.remove-preview {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e74c3c;
  color: white;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), background var(--transition-base);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.remove-preview:hover {
  transform: scale(1.1);
  background: #c0392b;
}

/* Pickup Toggle Switch */
.pickup-toggle {
  margin-top: var(--spacing-xs);
}

.pickup-switch {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  user-select: none;
}

.pickup-switch input {
  display: none;
}

.pickup-slider {
  width: 40px;
  height: 22px;
  background: var(--gray-300);
  border-radius: var(--radius-full);
  position: relative;
  transition: background var(--transition-base);
  flex-shrink: 0;
}

.pickup-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-base);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pickup-switch input:checked + .pickup-slider {
  background: var(--simpsons-yellow);
}

.pickup-switch input:checked + .pickup-slider::before {
  transform: translateX(18px);
}

[data-theme='futurama'] .pickup-switch input:checked + .pickup-slider {
  background: var(--futurama-green);
}

.pickup-label {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gray-700);
}

.pickup-switch input:checked ~ .pickup-label {
  color: var(--simpsons-yellow);
}

[data-theme='futurama'] .pickup-switch input:checked ~ .pickup-label {
  color: var(--futurama-green);
}

.disclaimer {
  display: block;
  margin-top: 4px;
  font-style: italic;
  font-size: 0.7rem;
}

/* Address group disabled state */
#addressGroup.disabled {
  opacity: 0.4;
  pointer-events: none;
  position: relative;
}

#addressGroup.disabled::after {
  content: 'Retiro en Prado';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--simpsons-yellow);
  color: var(--black);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
  white-space: nowrap;
}

[data-theme='futurama'] #addressGroup.disabled::after {
  background: var(--futurama-green);
}

#addressGroup.disabled input {
  background: var(--gray-200);
  color: var(--gray-400);
}

/* Product Options */
.product-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

@media (max-width: 768px) {
  .product-options {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xs);
  }

  .product-option-content {
    padding: var(--spacing-xs);
    gap: var(--spacing-xs);
  }

  .product-option-content i {
    font-size: 0.9rem;
  }

  .product-name {
    font-size: 0.7rem;
  }

  .product-price {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .product-options {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }

  .product-option-content {
    padding: var(--spacing-xs) var(--spacing-sm);
    flex-direction: row;
    justify-content: space-between;
  }

  .product-name {
    font-size: 0.75rem;
  }

  .product-price {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }

  .nav-container {
    padding: 0 var(--spacing-xs);
  }

  .logo-img {
    height: 24px;
    max-width: 120px;
  }
}

.product-option {
  cursor: pointer;
}

.product-option input {
  display: none;
}

.product-option-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  height: 100%;
}

.product-option-content i {
  font-size: 1.1rem;
  color: var(--gray-500);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gray-800);
  line-height: 1.2;
}

.product-price {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--simpsons-yellow);
  text-shadow: 1px 1px 0 var(--black);
}

[data-theme='futurama'] .product-price {
  color: var(--futurama-green);
}

.popular-tag {
  position: absolute;
  top: -6px;
  right: 8px;
  background: var(--simpsons-yellow);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

[data-theme='futurama'] .popular-tag {
  background: var(--futurama-green);
}

.product-option input:checked + .product-option-content {
  border-color: var(--simpsons-yellow);
  background: rgba(255, 217, 15, 0.1);
}

[data-theme='futurama'] .product-option input:checked + .product-option-content {
  border-color: var(--futurama-green);
  background: rgba(127, 255, 0, 0.1);
}

.product-option input:checked + .product-option-content i {
  color: var(--simpsons-yellow);
}

[data-theme='futurama'] .product-option input:checked + .product-option-content i {
  color: var(--futurama-green);
}

/* Shipping Options in form */
.shipping-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.order-form .shipping-option {
  cursor: pointer;
}

.order-form .shipping-option input {
  display: none;
}

.shipping-option-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.shipping-option-content i {
  font-size: 1.2rem;
  color: var(--gray-500);
}

.shipping-info-text {
  display: flex;
  flex-direction: column;
}

.shipping-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-800);
}

.shipping-price {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.order-form .shipping-option input:checked + .shipping-option-content {
  border-color: var(--simpsons-yellow);
  background: rgba(255, 217, 15, 0.1);
}

[data-theme='futurama'] .order-form .shipping-option input:checked + .shipping-option-content {
  border-color: var(--futurama-green);
  background: rgba(127, 255, 0, 0.1);
}

.order-form .shipping-option input:checked + .shipping-option-content i {
  color: var(--simpsons-yellow);
}

[data-theme='futurama'] .order-form .shipping-option input:checked + .shipping-option-content i {
  color: var(--futurama-green);
}

/* CAPTCHA */
.captcha-container {
  margin: var(--spacing-sm) 0;
}

.captcha-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--gray-500);
  font-size: 0.8rem;
}

/* Submit Button */
.btn-large {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.1rem;
}

.form-note {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.8rem;
  margin-top: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
}

.form-note i {
  color: var(--simpsons-yellow);
}

[data-theme='futurama'] .form-note i {
  color: var(--futurama-green);
}

/* Products Grid - 4 columns compact */
.products-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.products-grid .service-card {
  padding: var(--spacing-md);
}

.products-grid .service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: var(--spacing-sm);
}

.products-grid .service-icon i {
  font-size: 1.25rem;
}

.products-grid .service-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.products-grid .service-card p {
  font-size: 0.8rem;
  margin-bottom: var(--spacing-sm);
}

.products-grid .service-features {
  font-size: 0.75rem;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
}

.products-grid .service-features li {
  padding: var(--spacing-xs) 0;
}

.products-grid .service-price {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.products-grid .service-link {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 0.85rem;
}

.products-grid .featured-badge {
  font-size: 0.65rem;
  padding: 4px 8px;
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .products-grid .service-card {
    padding: var(--spacing-sm);
  }

  .products-grid .service-icon {
    width: 35px;
    height: 35px;
    margin-bottom: var(--spacing-xs);
  }

  .products-grid .service-icon i {
    font-size: 1rem;
  }

  .products-grid .service-card h3 {
    font-size: 0.85rem;
  }

  .products-grid .service-card p {
    font-size: 0.7rem;
    display: none;
  }

  .products-grid .service-features {
    font-size: 0.65rem;
    gap: 2px;
  }

  .products-grid .service-features li {
    padding: 2px 0;
  }

  .products-grid .service-price {
    font-size: 1rem;
  }

  .products-grid .service-link {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.75rem;
  }

  .products-grid .featured-badge {
    font-size: 0.55rem;
    padding: 2px 6px;
  }
}

/* Before/After Slider */
.before-after-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
}

.before-after-slider .before-image,
.before-after-slider .after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-after-slider .before-image img,
.before-after-slider .after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-slider .before-image {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.before-after-slider .after-image {
  z-index: 1;
}

.image-label {
  position: absolute;
  bottom: 15px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
}

.before-label {
  left: 15px;
}

.after-label {
  right: 15px;
  background: var(--simpsons-yellow);
  color: var(--black);
}

[data-theme='futurama'] .after-label {
  background: var(--futurama-purple);
  color: white;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 5;
}

.slider-button i {
  font-size: 1.25rem;
  color: var(--simpsons-yellow-dark);
}

[data-theme='futurama'] .slider-button i {
  color: var(--futurama-purple);
}

.before-after-hint {
  text-align: center;
  margin-top: var(--spacing-md);
  font-size: 0.85rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
}

.before-after-hint i {
  color: var(--simpsons-yellow-dark);
  animation: pointPulse 1.5s ease-in-out infinite;
}

[data-theme='futurama'] .before-after-hint i {
  color: var(--futurama-purple);
}

@keyframes pointPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Video Testimonial Card */
.testimonial-video-card {
  padding: 0 !important;
  overflow: hidden;
}

.testimonial-video-container {
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.testimonial-video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
  object-fit: cover;
}

.video-sound-indicator {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-base);
  opacity: 0.9;
}

.video-sound-indicator:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}

.video-sound-indicator.sound-on {
  background: var(--simpsons-yellow);
  color: var(--black);
}

.video-sound-indicator.sound-on i::before {
  content: '\f028';
}

.testimonial-video-card .testimonial-author {
  padding: var(--spacing-md);
  background: var(--white);
  justify-content: center;
}

/* Footer contact */
.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--gray-400);
  margin-bottom: var(--spacing-sm);
  font-size: 0.95rem;
}

.footer-contact li i {
  color: var(--simpsons-yellow);
  width: 20px;
}

[data-theme='futurama'] .footer-contact li i {
  color: var(--futurama-green);
}

/* Mobile theme switch */
@media (max-width: 768px) {
  .theme-switch-wrapper {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-fixed);
  }

  .theme-label {
    font-size: 0.75rem;
  }
}
