/* Lennox Local Ads Flyer - Redesigned Modern Stylesheet */

/* Logo Icon Animation */
@keyframes logoIconFloat {
  0% { 
    transform: translateY(0) rotate(0deg); 
  }
  25% { 
    transform: translateY(-3px) rotate(3deg); 
  }
  50% { 
    transform: translateY(0) rotate(0deg); 
  }
  75% { 
    transform: translateY(2px) rotate(-2deg); 
  }
  100% { 
    transform: translateY(0) rotate(0deg); 
  }
}

.logo-icon {
  animation: logoIconFloat 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 4px 8px rgba(220, 53, 69, 0.4));
}

/* Website Icon Animation */
@keyframes websiteIconFloat {
  0% { 
    transform: translateY(0) rotateY(0deg); 
  }
  25% { 
    transform: translateY(-4px) rotateY(5deg); 
  }
  50% { 
    transform: translateY(0) rotateY(0deg); 
  }
  75% { 
    transform: translateY(2px) rotateY(-3deg); 
  }
  100% { 
    transform: translateY(0) rotateY(0deg); 
  }
}

/* Service Area Grid Mobile Responsive Fixes */
@media (max-width: 768px) {
    .service-area-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-area-map, 
    .demographic-card {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .service-area-map iframe {
        min-height: 250px !important;
    }
    
    .demographic-stats {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .stat-box {
        padding: 8px !important;
    }
    
    .demographic-header h3 {
        font-size: 1.3rem !important;
    }
    
    .counter {
        font-size: 1.2rem !important;
    }
}

/* Mailbox Icon Animation */
@keyframes mailboxFloat {
  0% { 
    transform: translateY(0) scale(1); 
  }
  50% { 
    transform: translateY(-2px) scale(1.05); 
  }
  100% { 
    transform: translateY(0) scale(1); 
  }
}

.mailbox-icon img {
  animation: mailboxFloat 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.mailbox-icon:hover img {
  animation-play-state: paused;
  transform: scale(1.1) rotate(5deg);
}

/* Location Icon Animation */
@keyframes locationPulse {
  0% { 
    transform: scale(1) rotateY(0deg); 
  }
  50% { 
    transform: scale(1.08) rotateY(5deg); 
  }
  100% { 
    transform: scale(1) rotateY(0deg); 
  }
}

.location-icon img {
  animation: locationPulse 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.location-icon:hover img {
  animation-play-state: paused;
  transform: scale(1.15) rotateY(10deg);
  filter: drop-shadow(0 4px 12px rgba(0, 69, 181, 0.4));
}

.website-icon {
  animation: websiteIconFloat 3.5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.website-icon:hover {
  transform: scale(1.2) rotateY(15deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

/* Anything Else Icon Animation */
@keyframes anythingIconFloat {
  0% { 
    transform: translateY(0) rotate(0deg) scale(1); 
  }
  25% { 
    transform: translateY(-3px) rotate(2deg) scale(1.02); 
  }
  50% { 
    transform: translateY(0) rotate(0deg) scale(1); 
  }
  75% { 
    transform: translateY(2px) rotate(-1deg) scale(0.98); 
  }
  100% { 
    transform: translateY(0) rotate(0deg) scale(1); 
  }
}

.anything-icon {
  animation: anythingIconFloat 2.8s ease-in-out infinite;
  transition: all 0.3s ease;
}

.anything-icon:hover {
  transform: scale(1.25) rotate(10deg);
  filter: drop-shadow(0 6px 12px rgba(139, 195, 74, 0.5));
}

/* Star Burst Animation */
/* Initial flash effect */
@keyframes buttonFlash {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

/* Enhanced button flash for large effect */
@keyframes buttonFlashLarge {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.95;
  }
  40% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0.85;
  }
  80% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(6);
    opacity: 0;
  }
}

/* Central burst effect */
@keyframes centralBurst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.95;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* Enhanced central burst for large effect */
@keyframes centralBurstLarge {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  40% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0.9;
  }
  70% {
    transform: translate(-50%, -50%) scale(3.5);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

/* Star burst animations with enhanced dynamics */
@keyframes starBurst1 {
  0% {
    transform: translate(0, 0) scale(0.1);
    opacity: 0;
  }
  5% {
    opacity: 1;
    transform: translate(0, 0) scale(0.7);
  }
  15% {
    transform: translate(calc(var(--move-x) * 0.3), calc(var(--move-y) * 0.3)) scale(1.2);
  }
  100% {
    transform: translate(var(--move-x), var(--move-y)) scale(0.5);
    opacity: 0;
  }
}

@keyframes starBurst2 {
  0% {
    transform: translate(0, 0) scale(0.2);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translate(calc(var(--move-x) * 0.1), calc(var(--move-y) * 0.1)) scale(0.9);
  }
  25% {
    transform: translate(calc(var(--move-x) * 0.4), calc(var(--move-y) * 0.4)) scale(1.3);
  }
  100% {
    transform: translate(var(--move-x), var(--move-y)) scale(0.6);
    opacity: 0;
  }
}

@keyframes starBurst3 {
  0% {
    transform: translate(0, 0) scale(0.3);
    opacity: 0;
  }
  15% {
    opacity: 1;
    transform: translate(calc(var(--move-x) * 0.2), calc(var(--move-y) * 0.2)) scale(1.2);
  }
  30% {
    transform: translate(calc(var(--move-x) * 0.5), calc(var(--move-y) * 0.5)) scale(1.4);
  }
  100% {
    transform: translate(var(--move-x), var(--move-y)) scale(0.7);
    opacity: 0;
  }
}

@keyframes starBurst4 {
  0% {
    transform: translate(0, 0) scale(0.2);
    opacity: 0;
  }
  15% {
    opacity: 1;
    transform: translate(calc(var(--move-x) * 0.15), calc(var(--move-y) * 0.15)) scale(1.1);
  }
  35% {
    transform: translate(calc(var(--move-x) * 0.6), calc(var(--move-y) * 0.6)) scale(1.3);
  }
  100% {
    transform: translate(var(--move-x), var(--move-y)) scale(0.5);
    opacity: 0;
  }
}

@keyframes starRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(var(--rotate));
  }
}

@keyframes starFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}

@keyframes starScale {
  0% {
    transform: scale(0.2);
  }
  40% {
    transform: scale(var(--scale-factor, 1.5));
  }
  100% {
    transform: scale(0.4);
  }
}

.star-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

/* Initial flash at button click */
.button-flash {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, white 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 200, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9998;
  animation: buttonFlash 0.6s ease-out forwards;
  box-shadow: 
    0 0 20px 10px rgba(255, 255, 255, 0.8),
    0 0 40px 20px rgba(255, 255, 0, 0.4),
    0 0 60px 30px rgba(255, 255, 0, 0.2);
}

.button-flash.large-effect {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, white 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 200, 0) 70%);
  animation: buttonFlashLarge 1.0s ease-out forwards;
  box-shadow: 
    0 0 10px 5px rgba(255, 255, 255, 0.8),
    0 0 20px 10px rgba(255, 255, 0, 0.5),
    0 0 30px 15px rgba(255, 215, 0, 0.3);
}

/* Central burst effect */
.central-burst {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 215, 0, 0.7) 40%, rgba(255, 215, 0, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9997;
  animation: centralBurst 0.7s ease-out forwards;
  box-shadow: 
    0 0 30px 10px rgba(255, 255, 255, 0.9),
    0 0 50px 20px rgba(255, 215, 0, 0.7),
    0 0 70px 30px rgba(255, 215, 0, 0.4);
}

.central-burst.large-effect {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 215, 0, 0.6) 30%, rgba(255, 140, 0, 0.4) 50%, rgba(255, 0, 0, 0) 80%);
  animation: centralBurstLarge 1.0s ease-out forwards;
  box-shadow: 
    0 0 15px 5px rgba(255, 255, 255, 0.8),
    0 0 25px 10px rgba(255, 215, 0, 0.5),
    0 0 35px 15px rgba(255, 140, 0, 0.3);
}

.celebration-star {
  position: absolute;
  transform-origin: center;
  will-change: transform, opacity;
  filter: blur(0.5px);
}

.star-shape-1 {
  box-shadow: 
    0 0 20px 5px rgba(255, 215, 0, 0.9),
    0 0 40px 10px rgba(255, 215, 0, 0.6),
    0 0 60px 15px rgba(255, 255, 255, 0.4);
}

.star-shape-2 {
  box-shadow: 
    0 0 25px 5px rgba(255, 215, 0, 0.9),
    0 0 50px 10px rgba(255, 215, 0, 0.7),
    0 0 70px 15px rgba(255, 255, 255, 0.5);
}

.star-shape-3 {
  box-shadow: 
    0 0 30px 10px rgba(255, 255, 255, 0.9),
    0 0 50px 15px rgba(255, 215, 0, 0.8),
    0 0 70px 20px rgba(255, 215, 0, 0.5);
}

.star-shape-4 {
  box-shadow: 
    0 0 20px 5px rgba(255, 215, 0, 0.9),
    0 0 40px 10px rgba(255, 215, 0, 0.7),
    0 0 60px 15px rgba(255, 255, 255, 0.5);
}

:root {
  /* Main Brand Colors - Blue, Yellow, Red */
  --gigante-blue: #0045B5;
  --gigante-yellow: #FFD700;
  --gigante-red: #FF0000;
  
  /* Secondary Colors */
  --gigante-navy: #001F54;
  --gigante-orange: #FF5300;
  /* --gigante-purple: #B39BC8; -- REMOVED as not needed */
  
  /* Extended color palette */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --gradient-1: linear-gradient(135deg, var(--gigante-red), var(--gigante-blue));
  --gradient-2: linear-gradient(135deg, var(--gigante-blue), var(--gigante-navy));
  --gradient-3: linear-gradient(135deg, var(--gigante-yellow), var(--gigante-red));
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
  background-color: var(--white);
}

/* Section Divider Styles */
.section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.section-divider.top {
  top: -1px;
}

.section-divider.bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.section-divider.large svg {
  height: 120px;
}

.section-divider.small svg {
  height: 40px;
}

/* Showcase Badge Styling */
.showcase-badge {
  position: absolute;
  top: -20px;
  left: 30px;
  z-index: 10;
  background: linear-gradient(135deg, #d4af37, #f1c40f, #d4af37);
  background-size: 200% 200%;
  color: #000000;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 
    0 10px 25px rgba(212, 175, 55, 0.4),
    0 5px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(5deg);
  animation: badgePulse 3s infinite ease-in-out, gradientShift 3s ease-in-out infinite;
}

.showcase-badge i {
  color: #000000;
  font-size: 1rem;
  animation: starSpin 4s infinite linear;
}

@keyframes badgePulse {
  0%, 100% { 
    transform: rotate(5deg) scale(1); 
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4), 0 5px 10px rgba(0, 0, 0, 0.15);
  }
  50% { 
    transform: rotate(5deg) scale(1.08); 
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6), 0 8px 15px rgba(0, 0, 0, 0.2);
  }
}

@keyframes starSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

/* Animation for wave dividers */
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25px);
  }
  100% {
    transform: translateX(0);
  }
}

.wave-animation path {
  animation: wave 15s ease-in-out infinite;
}

.wave-animation path:nth-child(2) {
  animation-delay: -5s;
  opacity: 0.5;
}

/* Animation for bubble dividers */
@keyframes float-bubbles {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.bubble-animation circle {
  animation: float-bubbles 8s ease-in-out infinite;
}

.bubble-animation circle:nth-child(2n) {
  animation-delay: -4s;
}

.bubble-animation circle:nth-child(3n) {
  animation-delay: -2s;
}

/* Lexend Deca for subtexts */
p, .hero-paragraph, .benefit-card p, .step p, .date-item p, 
.testimonial-content, .accordion-content p, .footer-description,
.pricing-description, .spot-description {
  font-family: 'Lexend Deca', 'Poppins', sans-serif;
}

/* Loading Animation */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d4af37;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.loader {
  width: 80px;
  height: 80px;
  position: relative;
}

.loader-circle {
  width: 100%;
  height: 100%;
  border: 8px solid var(--white);
  border-top-color: var(--gigante-red);
  border-left-color: var(--gigante-blue);
  border-right-color: var(--gigante-yellow);
  border-radius: 50%;
  animation: spin 0.8s infinite linear;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/* Side Navigation */
.side-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: none;
}

.side-nav-item {
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border: 2px solid var(--gigante-yellow);
  border-radius: 50%;
  margin: 10px 0;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s, background-color 0.3s;
}

.side-nav-item:hover,
.side-nav-item.active {
  transform: scale(1.3);
  background-color: var(--gigante-yellow);
}

.side-nav-item .tooltip {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--gigante-navy);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.side-nav-item:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Container and Main Layout */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 3;
}

section {
  position: relative;
  overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 4;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Spanish version heading needs smaller text */
.spanish h1 {
  font-size: 3.8rem;
}

/* Removed custom dot styling */

h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 4rem;
  z-index: 3;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Removed small underline
.section-title::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 5px;
  background: var(--gigante-orange);
  bottom: -15px;
  left: 0;
} */

/* Removed small underline
.section-title::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 5px;
  background: var(--gigante-purple);
  bottom: -15px;
  left: 55px;
} */

/* Removed small underline styling
.text-center .section-title::before,
.text-center .section-title::after {
  left: 50%;
}

.text-center .section-title::before {
  transform: translateX(-40px);
}

.text-center .section-title::after {
  transform: translateX(15px);
} */

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

/* Header & Navigation */
header {
  position: fixed;
  top: 32px; /* Adjusted for news ticker height */
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: background-color 0.3s, padding 0.3s, box-shadow 0.3s;
  background-color: rgba(0, 31, 84, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

header.scrolled {
  background-color: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gigante-yellow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
  z-index: 20;
  padding: 5px 10px;
  border-radius: 5px;
}

header.scrolled .logo {
  color: var(--gigante-navy);
}

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

.brand-logo {
  height: 40px;
  width: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, filter 0.3s ease;
  flex: 0 0 40px;
}

.logo:hover .brand-logo {
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.brand-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.25px;
  line-height: 1;
  white-space: nowrap;
}

.brand-name .primary {
  color: #d4af37;
}

.brand-name .accent {
  color: #4FC3F7;
}

/* Slight optical balance for descender alignment */
.logo .brand-name { margin-top: 1px; }

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  margin-right: 15px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.nav-links li {
  margin-left: 40px;
}

/* Hide email from desktop nav for floating solution */
@media (max-width: 768px) {
  .nav-links li:nth-child(3) {
    display: none;
  }
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
  position: relative;
  white-space: nowrap;
  font-size: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

header.scrolled .nav-links a {
  color: var(--gigante-navy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--gigante-yellow);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gigante-yellow);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  z-index: 20;
  position: relative;
  width: 35px;
  height: 35px;
  padding: 5px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.mobile-toggle.active {
  background-color: #b39bc8; /* Light purple background when active */
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  border-radius: 3px;
}

header.scrolled .mobile-toggle span {
  background-color: var(--gigante-navy);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: white !important;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: white !important;
}

.language-toggle {
  display: flex;
  align-items: center;
  margin-left: 30px;
  margin-top: 5px;
  position: relative;
  top: 5px;
  cursor: pointer;
  background-color: rgba(212, 175, 55, 0.8); /* Gold to match website theme */
  padding: 6px 12px;
  border-radius: 18px;
  transition: background-color 0.3s, transform 0.3s;
  border: 1px solid rgba(212, 175, 55, 0.5);
  font-size: 0.9rem;
}

header.scrolled .language-toggle {
  background-color: rgba(212, 175, 55, 0.6); /* Gold for scrolled state */
}

.language-toggle:hover {
  background-color: rgba(212, 175, 55, 1); /* Solid gold on hover */
  transform: translateY(-3px);
}

.language-toggle i {
  color: var(--white);
  font-size: 0.9rem;
}

header.scrolled .language-toggle i {
  color: var(--gigante-navy);
}

.language-toggle span {
  margin-left: 4px;
  font-weight: 500;
  color: var(--white);
  font-size: 0.9rem;
}

header.scrolled .language-toggle span {
  color: var(--gigante-navy);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gigante-blue);
  position: relative;
  padding: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://cdn.pixabay.com/photo/2022/11/10/00/38/creative-7581718_1280.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 45%;
  margin-left: 8%;
  background-color: rgba(0, 31, 84, 0.8);
  padding: 40px 30px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gigante-yellow);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  padding-top: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  white-space: normal;
  overflow: visible !important;
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 5;
}

.hero-paragraph {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--white);
  position: relative;
  z-index: 4;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-images {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  z-index: 2;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.image-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.hero-main-image, .hero-second-image {
  width: 100%;
  display: block;
}

.hero-third-image {
  display: none;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 14px;
  max-width: 200px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.6s;
  z-index: -1;
  transform: skewX(-30deg);
}

.btn:hover::before {
  transform: translateX(200%) skewX(-30deg);
}

.btn-primary {
  background-color: green;
  color: var(--white);
}

.btn-primary:hover {
  background-color: darkgreen;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 128, 0, 0.3);
}

/* Gold button styling for pricing section */
.btn-primary.pricing-gold {
  background: linear-gradient(135deg, #d4af37, #f1c40f, #d4af37);
  background-size: 200% 200%;
  color: #000000;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: goldGradientFlow 3s ease infinite;
}

.btn-primary.pricing-gold:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
  background-position: 100% 50%;
  background-color: transparent;
}

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

.btn-secondary {
  background-color: var(--white);
  color: var(--gigante-navy);
  border: 2px solid var(--gigante-navy);
}

.btn-secondary:hover {
  background-color: var(--gigante-navy);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(6, 24, 44, 0.3);
}

.btn-yellow {
  background-color: var(--gigante-yellow);
  color: var(--gigante-blue);
  border: none;
}

.btn-yellow:hover {
  background-color: #e6c300;
  color: var(--gigante-navy);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  opacity: 0.6;
  z-index: 1;
}

.floating-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gigante-orange);
  filter: blur(80px);
  animation: float 10s ease-in-out infinite alternate;
}

.floating-square {
  width: 200px;
  height: 200px;
  background: var(--gigante-purple);
  filter: blur(60px);
  animation: float 8s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(50px, 50px) rotate(10deg);
  }
}

/* News Ticker / Scrolling Text */
.news-ticker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #4FC3F7;
  padding: 8px 0;
  z-index: 1001;
  overflow: hidden;
  border-bottom: 1px solid #333;
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 500;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
}

.ticker-content p {
  display: inline-block;
  margin: 0;
  padding-left: 100%;
  text-shadow: 0 0 8px rgba(79, 195, 247, 0.5);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

/* Phone Contact Floating Element */
.phone-contact-float {
  position: fixed;
  top: 140px; /* Moved down to avoid overlap with language button */
  right: 20px;
  z-index: 998;
  border-radius: 50px;
  background-color: var(--gigante-blue);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: phoneFloat 5s ease-in-out infinite, phoneRing 2s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.3s;
  overflow: hidden;
}

.phone-contact-inner {
  display: flex;
  align-items: center;
  padding: 8px 15px; /* Reduced padding to make it more compact */
}

.phone-icon {
  width: 35px;
  height: 35px;
  background-color: #00C853;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  margin-right: 12px;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

.phone-text {
  color: white;
}

.phone-text p {
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}

.phone-number {
  font-weight: 700;
  font-size: 1rem;
}

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

@keyframes phoneRing {
  0%, 50%, 100% {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }
  25%, 75% {
    box-shadow: 0 5px 20px rgba(65, 105, 225, 0.7);
  }
}

.phone-contact-float:hover {
  transform: scale(1.05);
  animation-play-state: paused;
}

/* Phone Contact Float Media Queries */
@media (max-width: 992px) {
  .phone-contact-float {
    top: auto;
    bottom: 100px;
    right: 20px;
    left: auto;
  }
}

/* Mobile Email Float Button - Hidden as redundant */
@media (max-width: 768px) {
  .mobile-email-float {
    display: none !important;
  }
  
  /* Fix Spanish call button size to match English version */
  .phone-contact-float {
    max-width: 300px; /* Constrain width on mobile */
  }
  
  .phone-text.es p:first-child {
    font-size: 0.9rem !important; /* Adjust Spanish text size */
  }
  
  .phone-text.es .phone-number {
    font-size: 0.95rem !important; /* Adjust Spanish phone number */
  }
}

@media (min-width: 769px) {
  .mobile-email-float {
    display: none;
  }
}

@media (max-width: 576px) {
  .phone-contact-float {
    top: auto;
    bottom: 80px;
    right: 10px;
    z-index: 995;
    max-width: 280px; /* Constrain maximum width */
  }
  
  .phone-contact-inner {
    padding: 8px 15px;
  }
  
  .phone-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    margin-right: 10px;
    flex-shrink: 0; /* Prevent icon from shrinking */
  }
  
  .phone-text {
    flex: 1;
    min-width: 0; /* Allow text to shrink if needed */
  }
  
  .phone-text p {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Spanish version specific adjustments */
  .phone-text.es p:first-child {
    font-size: 0.8rem !important; /* Slightly smaller for longer Spanish text */
  }
  
  .phone-text.es .phone-number {
    font-size: 0.85rem !important; /* Smaller Spanish phone number text */
  }
  
  .phone-number {
    font-size: 0.9rem;
  }
}

/* Credibility Bar */
.credibility {
  padding: 50px 0;
  position: relative;
  background-color: var(--white);
}

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

.logo-item {
  margin: 15px;
  flex: 1;
  min-width: 140px;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  text-align: center;
}

.logo-item:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Benefits Section */
.benefits {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(135deg, #f0f9ff, #e1f5fe, #b3e5fc);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

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

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%230045b5' fill-opacity='0.07'/%3E%3C/svg%3E");
  opacity: 0.8;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.benefit-card {
  padding: 40px 30px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 69, 181, 0.1);
  transition: transform 0.5s, box-shadow 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-1);
  transition: width 0.3s ease, opacity 0.3s ease;
  z-index: -1;
  opacity: 1;
}

.benefit-card:hover::before {
  width: 100%;
  opacity: 0.1; /* Reduced opacity to 10% for better text readability */
}

/* Specific color overlays for each benefit card */
.benefit-card:nth-child(1)::before {
  background: linear-gradient(135deg, #FF0000, #cc0000); /* Red gradient for first card */
}

.benefit-card:nth-child(2)::before {
  background: linear-gradient(135deg, #0045B5, #1976D2); /* Blue gradient for second card */
}

.benefit-card:nth-child(3)::before {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold gradient for third card */
}

.benefit-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(0, 69, 181, 0.2);
}

.benefit-card:hover .benefit-title {
  background: linear-gradient(45deg, var(--gigante-red), var(--gigante-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-card:hover p {
  color: var(--gigante-navy);
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-10px) rotateY(10deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.benefits-title {
  font-size: 3.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, var(--gigante-navy), var(--gigante-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  position: relative;
}

.highlight-text {
  position: relative;
  display: inline-block;
  color: var(--gigante-red);
  -webkit-text-fill-color: var(--gigante-red);
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

/* Responsive title underline styling with Knight Rider animation */
.title-with-underline {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.knight-rider-underline {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 30px;
  width: 100%;
  align-self: center;
  text-align: center;
}

.underline-track {
  position: relative;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #FF6600 0%, #FF6600 20%, #0045B5 20%, #0045B5 100%);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.underline-light {
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 20%, rgba(255,255,0,0.8) 40%, rgba(255,255,255,0.6) 60%, rgba(255,255,255,0) 100%);
  box-shadow: 
    0 0 25px 10px rgba(255, 255, 255, 1),
    0 0 50px 15px rgba(255, 255, 255, 0.8),
    0 0 75px 20px rgba(255, 255, 0, 0.6);
  animation: knightRider 4s ease-in-out infinite;
  filter: brightness(2.5) saturate(1.2);
  z-index: 10;
}

@keyframes knightRider {
  0% {
    left: -40px;
  }
  50% {
    left: calc(100% + 10px);
  }
  100% {
    left: -40px;
  }
}

@media (max-width: 768px) {
  .title-with-underline .section-title {
    font-size: 2.2rem !important;
  }
  
  .underline-track {
    width: 100%;
  }
}

.benefit-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--gigante-orange), var(--gigante-red));
  margin-bottom: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(255, 83, 0, 0.2);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  animation: benefitIconFloat 6s ease-in-out infinite alternate;
  overflow: visible;
}

/* Custom styling for location icon container */
.location-icon {
  width: 90px;
  height: 90px;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

@keyframes benefitIconFloat {
  0% {
    transform: translateY(0) rotateY(0deg);
  }
  100% {
    transform: translateY(-10px) rotateY(5deg);
  }
}

.benefit-title {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: var(--gigante-navy);
  transition: all 0.3s;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.benefit-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gigante-blue), transparent);
  transition: width 0.3s ease;
}

.benefit-card:hover .benefit-title::after {
  width: 80px;
}

/* How It Works Section */
.how-works {
  padding: 120px 0;
  background-color: var(--light-gray);
  position: relative;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230045B5' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 20% 30%, rgba(0, 69, 181, 0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.08), transparent 50%);
  background-size: 60px 60px, 100% 100%, 100% 100%;
  animation: backgroundShift 40s linear infinite;
  overflow: hidden;
}

@keyframes backgroundShift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 100px 100px, 0 0, 0 0;
  }
}

.skew-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skewY(-5deg);
  transform-origin: top left;
  background: var(--gradient-2);
  opacity: 0.25;
  z-index: 1;
  animation: pulseBackground 8s ease-in-out infinite alternate;
}

@keyframes pulseBackground {
  0% {
    background-size: 100% 100%;
    opacity: 0.25;
    box-shadow: 0 0 30px rgba(0, 69, 181, 0.2);
  }
  100% {
    background-size: 120% 120%;
    opacity: 0.35;
    box-shadow: 0 0 50px rgba(0, 69, 181, 0.4);
  }
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.step {
  flex: 0 0 calc(25% - 30px);
  min-width: 240px;
  text-align: center;
  position: relative;
  max-width: 280px;
  transition: all 0.3s ease;
}

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gigante-red);
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  top: -30px;
  left: calc(50% - 30px);
  z-index: 3;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 4px solid var(--white);
  animation: glowing 2s infinite alternate;
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7), 0 0 30px rgba(255, 0, 0, 0.3);
  }
}

.step:nth-child(2) .step-number {
  background: var(--gigante-yellow);
  animation: glowingYellow 2s infinite alternate;
}

.step:nth-child(3) .step-number {
  background: var(--gigante-blue);
  animation: glowingBlue 2s infinite alternate;
}

.step:nth-child(4) .step-number {
  background: #00A86B; /* Green color */
  animation: glowingGreen 2s infinite alternate;
}

@keyframes glowingYellow {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.3);
  }
}

@keyframes glowingBlue {
  0% {
    box-shadow: 0 0 10px rgba(0, 69, 181, 0.5), 0 0 20px rgba(0, 69, 181, 0.2);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 69, 181, 0.7), 0 0 30px rgba(0, 69, 181, 0.3);
  }
}

@keyframes glowingGreen {
  0% {
    box-shadow: 0 0 10px rgba(0, 168, 107, 0.5), 0 0 20px rgba(0, 168, 107, 0.2);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 168, 107, 0.7), 0 0 30px rgba(0, 168, 107, 0.3);
  }
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step:nth-child(1):hover .step-number {
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.step:nth-child(2):hover .step-number {
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.step:nth-child(3):hover .step-number {
  box-shadow: 0 8px 20px rgba(0, 69, 181, 0.5);
}

.step:nth-child(4):hover .step-number {
  box-shadow: 0 8px 20px rgba(0, 168, 107, 0, 0.5);
}

.step-content {
  background-color: var(--white);
  padding: 45px 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 69, 181, 0.15);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  height: 100%;
  position: relative;
  z-index: 2;
  border-top: 8px solid var(--gigante-navy);
  border-bottom: 2px solid var(--gigante-red);
  border-left: 2px solid var(--gigante-blue);
  border-right: 2px solid var(--gigante-yellow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95));
  z-index: -2;
}

.step-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.4) 100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.step:nth-child(1) .step-content {
  background-image: linear-gradient(120deg, rgba(0, 69, 181, 0.05), rgba(0, 69, 181, 0.15));
  border-top-color: var(--gigante-blue);
}

.step:nth-child(2) .step-content {
  background-image: linear-gradient(120deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.15));
  border-top-color: var(--gigante-yellow);
}

.step:nth-child(3) .step-content {
  background-image: linear-gradient(120deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0.15));
  border-top-color: var(--gigante-red);
}

.step:nth-child(4) .step-content {
  background-image: linear-gradient(120deg, rgba(0, 168, 107, 0.05), rgba(0, 168, 107, 0.15));
  border-top-color: #00A86B;
}

.step:hover .step-content {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 69, 181, 0.25);
}

.step:hover .step-content::after {
  opacity: 1;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.5) 100%);
}

.step:nth-child(1):hover .step-content {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(0, 69, 181, 0.3);
}

.step:nth-child(2):hover .step-content {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 215, 0, 0.3);
}

.step:nth-child(3):hover .step-content {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 0, 0, 0.3);
}

.step:nth-child(4):hover .step-content {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(0, 168, 107, 0.3);
}

.step h3 {
  margin-bottom: 15px;
  color: var(--gigante-navy);
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  display: inline-block;
}

.step h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, var(--gigante-yellow), transparent);
  border-radius: 2px;
}

.step p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 500;
}

.connecting-paths {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.path-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: rgba(0, 69, 181, 0.6);
  border-radius: 50%;
  z-index: 0;
  animation: pulseDot 3s infinite alternate;
}

.connecting-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(to right, rgba(0, 69, 181, 0.3), rgba(0, 69, 181, 0.8));
  box-shadow: 0 0 10px rgba(0, 69, 181, 0.3);
  z-index: 0;
  animation: pulseLine 4s infinite alternate;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(0, 69, 181, 0.4);
  }
  100% {
    transform: scale(2);
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(0, 69, 181, 0.6), 0 0 30px rgba(0, 69, 181, 0.3);
  }
}

@keyframes pulseLine {
  0% {
    opacity: 0.3;
    height: 3px;
    box-shadow: 0 0 5px rgba(0, 69, 181, 0.2);
  }
  100% {
    opacity: 0.7;
    height: 4px;
    box-shadow: 0 0 15px rgba(0, 69, 181, 0.4), 0 0 5px rgba(0, 69, 181, 0.6);
  }
}

.step-path {
  display: none;
}

/* Spot Grid */
.spot-grid {
  padding: 120px 0;
  background-color: var(--white);
  position: relative;
}

.slogan {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px !important;
  letter-spacing: 1px;
  color: var(--gigante-navy);
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.highlight {
  color: var(--gigante-red);
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--gigante-yellow);
  border-radius: 5px;
}

/* New Flyer Display */
.location-tags {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 30px auto 20px;
  max-width: 1200px;
}

.location-tag {
  background-color: #FFD700;
  color: #000;
  border-radius: 30px;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whittier-tag {
  background: linear-gradient(135deg, #d4af37, #ff8c00);
  color: white;
}

.whittier-tag:hover {
  background: linear-gradient(135deg, #c19b26, #e67e00);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.location-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #000;
  text-decoration: none;
}

.location-tag:focus {
  outline: 3px solid rgba(255, 215, 0, 0.6);
  outline-offset: 2px;
}

.santafe-tag {
  background: linear-gradient(135deg, #3498DB, #9B59B6);
  color: white;
}

.santafe-tag:hover {
  background: linear-gradient(135deg, #2980B9, #8E44AD);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.location-tag i {
  margin-right: 8px;
  font-size: 18px;
}

.location-tag span {
  font-size: 16px;
}

.flyer-display {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin: 30px auto 50px;
  max-width: 1200px;
  transition: all 0.3s ease;
}

/* Alignment for cards under specific location tags */
.whittier-tag {
  margin-right: 30px;
}

.santafe-tag {
  margin-left: 30px;
}

.flyer-page {
  position: relative;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 0 0 45%;
  animation: neonGlow 3s ease-in-out infinite alternate;
}

/* Apply neon glow effect to map images */
.neon-glow-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: neonGlow 3s ease-in-out infinite alternate;
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.postcard-container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 40px;
}

@keyframes neonGlow {
  0% {
    box-shadow: 0 0 5px #00ccff, 0 0 10px #00ccff, 0 0 20px #00ccff, 0 0 30px #00ccff;
  }
  25% {
    box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 30px #00ffcc, 0 0 40px #00ffcc;
  }
  50% {
    box-shadow: 0 0 15px #00ccff, 0 0 25px #00ccff, 0 0 35px #00ccff, 0 0 45px #00ccff;
  }
  75% {
    box-shadow: 0 0 10px #00ffee, 0 0 20px #00ffee, 0 0 30px #00ffee, 0 0 40px #00ffee;
  }
  100% {
    box-shadow: 0 0 5px #00ccff, 0 0 10px #00ccff, 0 0 20px #00ccff, 0 0 30px #00ccff;
  }
}

.flyer-page:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.flyer-header {
  text-align: center;
  color: var(--white);
  padding: 15px 0;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.flyer-header.turquoise {
  background-color: #d4af37;
}

.flyer-header.red {
  background-color: var(--gigante-red);
}

.flyer-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Legend for available and booked spots */
.spot-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.available-spot {
  background-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.booked-spot {
  background-color: #cccccc;
}

.spot-cta {
  margin-top: 40px;
}

/* Original grid styles are kept for reference but not used */
.grid-container {
  display: none;
}

.grid-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 200px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.grid-item:hover {
  transform: rotateY(180deg);
}

.grid-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
}

.grid-face-front {
  color: var(--white);
  transform: rotateY(0deg);
}

.grid-face-back {
  background-color: var(--white);
  color: var(--dark-gray);
  border: 2px solid;
  transform: rotateY(180deg);
  justify-content: space-between;
}

.available .grid-face-front {
  background: var(--gradient-2);
}

.available .grid-face-back {
  border-color: var(--gigante-teal);
}

.booked .grid-face-front {
  background: var(--gradient-1);
}

.booked .grid-face-back {
  border-color: var(--gigante-purple);
}

.spot-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.spot-description {
  font-size: 1rem;
  text-align: center;
}

.grid-face-back .btn {
  padding: 8px 15px;
  font-size: 0.9rem;
  margin-top: 15px;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #001f54, #0033cc);
  animation: gradientFlow 15s ease infinite alternate;
}

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

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.22), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(0, 69, 181, 0.15), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(255, 215, 0, 0.18), transparent 35%),
    radial-gradient(circle at 70% 20%, rgba(255, 193, 7, 0.15), transparent 30%),
    radial-gradient(circle at 10% 60%, rgba(218, 165, 32, 0.12), transparent 25%);
  filter: blur(10px);
  opacity: 0.9;
  animation: pulsate 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes pulsate {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

.pricing::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%230045b5' fill-opacity='0.07'/%3E%3C/svg%3E");
  animation: backgroundScroll 60s linear infinite;
  z-index: 0;
  opacity: 0.4;
}

@keyframes backgroundScroll {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.pricing-floating-1 {
  top: 20%; 
  right: 15%;
  width: 350px;
  height: 350px;
  opacity: 0.4;
  filter: blur(90px);
  animation: float 8s ease-in-out infinite alternate, colorShift 12s linear infinite;
  z-index: 2;
}

.pricing-floating-2 {
  bottom: 10%;
  left: 20%;
  width: 400px;
  height: 400px;
  opacity: 0.4;
  filter: blur(100px);
  animation: float 12s ease-in-out infinite alternate-reverse, colorShift 18s linear infinite reverse;
  z-index: 2;
}

@keyframes colorShift {
  0% {
    background-color: var(--gigante-blue);
  }
  33% {
    background-color: var(--gigante-red);
  }
  66% {
    background-color: var(--gigante-yellow);
  }
  100% {
    background-color: var(--gigante-blue);
  }
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  animation: cardPulsate 3s ease-in-out infinite alternate;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes cardPulsate {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 215, 0, 0.3);
  }
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 255, 255, 0.2);
  animation-play-state: paused;
}

.pricing-header {
  padding: 30px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.pricing-header::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: opacity 0.5s;
}

.pricing-header::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: lightSweep 3s linear infinite;
  z-index: 1;
}

@keyframes lightSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.pricing-card:hover .pricing-header::before {
  opacity: 1;
}

.pricing-card:nth-child(2) .pricing-header {
  background: var(--gradient-2);
}

.pricing-card:nth-child(3) .pricing-header {
  background: var(--gradient-3);
}

.pricing-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--gigante-yellow);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  position: relative;
  z-index: 2;
  animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
  0% {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  }
  100% {
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
  }
}

.pricing-description {
  font-size: 0.9rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

.pricing-features {
  padding: 30px;
  list-style: none;
  position: relative;
  z-index: 2;
}

.pricing-features li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.pricing-features li:hover {
  transform: translateX(5px);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gigante-yellow);
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.pricing-card:nth-child(2) .pricing-features li::before {
  color: var(--gigante-teal);
}

.pricing-card:nth-child(3) .pricing-features li::before {
  color: var(--gigante-purple);
}

.pricing-action {
  padding: 0 30px 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-action .btn {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-action .btn:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.4);
}

.pricing-action .btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btnSweep 3s infinite linear;
  z-index: 1;
}

@keyframes btnSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* 3D Building Icon Animation - Subtle Float */
@keyframes buildingFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Map Section */
.map-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #fffbeb, #fff9c4);
  position: relative;
  overflow: hidden;
}

.map-title {
  color: #ffffff !important;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 25%, #ffeb3b 50%, #d4af37 75%, #b8860b 100%);
  border-radius: 20px;
  box-shadow: 
    0 15px 35px rgba(212, 175, 55, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 215, 0, 0.8);
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Adjust Spanish version of map-title to be smaller and more compact */
.section-title.es.map-title {
  font-size: 1.9rem;
  padding: 15px 20px;
  letter-spacing: 0.5px;
  max-width: 480px;
  text-align: center;
  line-height: 1.2;
}

.map-title:hover {
  transform: perspective(1000px) rotateX(5deg) translateY(-5px);
  box-shadow: 
    0 20px 45px rgba(212, 175, 55, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 1);
}

.faq-title {
  color: var(--gigante-yellow) !important;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.map-title::before {
  content: '📅';
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 2rem;
  z-index: 1;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 25px rgba(255, 107, 107, 0.4),
    0 0 0 4px rgba(255, 255, 255, 0.8);
  animation: pulse 2s infinite;
}

.map-title::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  background: linear-gradient(45deg, #d4af37, #ffd700, #ffeb3b, #d4af37);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(5px);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 10px 25px rgba(255, 107, 107, 0.4),
      0 0 0 4px rgba(255, 255, 255, 0.8);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 
      0 15px 35px rgba(255, 107, 107, 0.6),
      0 0 0 6px rgba(255, 255, 255, 0.9);
  }
}

/* Premium Service Areas Title Animations */
@keyframes premiumPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1) rotate(0deg);
    box-shadow: 
      0 15px 30px rgba(233, 30, 99, 0.5),
      0 0 0 5px rgba(255, 255, 255, 0.9);
  }
  50% {
    transform: translateX(-50%) scale(1.15) rotate(5deg);
    box-shadow: 
      0 20px 40px rgba(233, 30, 99, 0.7),
      0 0 0 8px rgba(255, 255, 255, 1),
      0 0 30px rgba(255, 215, 0, 0.6);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 1;
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.9;
  }
  25% {
    transform: scale(1.3) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: scale(0.8) rotate(180deg);
    opacity: 0.7;
  }
  75% {
    transform: scale(1.2) rotate(270deg);
    opacity: 1;
  }
}

/* Premium title hover effects */
.premium-service-title:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-2deg) translateY(-10px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(212, 175, 55, 0.6),
    0 15px 30px rgba(0, 0, 0, 0.4),
    inset 0 3px 0 rgba(255, 255, 255, 0.5),
    inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

.premium-service-title:hover h2 {
  text-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 215, 0, 1),
    0 0 70px rgba(255, 255, 255, 0.6);
}

.map-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.map {
  flex: 1;
  min-width: 300px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 5px solid rgba(255, 255, 255, 0.8);
  animation: neonGlowMap 3s ease-in-out infinite alternate;
}

@keyframes neonGlowMap {
  0% {
    box-shadow: 0 0 5px #00ccff, 0 0 10px #00ccff, 0 0 20px #00ccff, 0 0 30px #00ccff;
  }
  25% {
    box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 30px #00ffcc, 0 0 40px #00ffcc;
  }
  50% {
    box-shadow: 0 0 15px #00ccff, 0 0 25px #00ccff, 0 0 35px #00ccff, 0 0 45px #00ccff;
  }
  75% {
    box-shadow: 0 0 10px #00ffee, 0 0 20px #00ffee, 0 0 30px #00ffee, 0 0 40px #00ffee;
  }
  100% {
    box-shadow: 0 0 5px #00ccff, 0 0 10px #00ccff, 0 0 20px #00ccff, 0 0 30px #00ccff;
  }
}

.map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.map:hover img {
  transform: scale(1.05);
}

.map::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,83,0,0.4) 0%, rgba(6,24,44,0.4) 100%);
  opacity: 0;
  transition: opacity 0.5s;
}

.map:hover::after {
  opacity: 1;
}

.drop-dates {
  flex: 1;
  min-width: 300px;
  z-index: 2;
  position: relative;
}

.drop-dates h3 {
  color: var(--gigante-red);
  text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.3);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.drop-dates h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--gigante-yellow), transparent);
  border-radius: 3px;
}

.date-item {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(255, 215, 0, 0.2);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  border-left: 5px solid var(--gigante-yellow);
}

.date-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 25px rgba(255, 215, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.9);
}

.map-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5d742' fill-opacity='0.15'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.6;
}

.date-item h4 {
  color: var(--gigante-navy);
  margin-bottom: 15px;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.date-item h4 {
  color: var(--gigante-navy);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* Results Section */
.results {
  padding: 120px 0;
  background-color: var(--light-gray);
  position: relative;
}

.testimonial-slider {
  margin-top: 50px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  margin: 0 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--dark-gray);
  position: relative;
}

.testimonial-content::before {
  content: '❝';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 3rem;
  color: rgba(255, 83, 0, 0.1);
}

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

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
  border: 3px solid var(--gigante-orange);
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--gigante-navy);
}

.author-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--dark-gray);
}

.results-gallery {
  margin-top: 50px;
  position: relative;
  text-align: center;
}

.gallery-image {
  max-width: 80%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery-image:hover {
  transform: scale(1.03);
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background: linear-gradient(120deg, #e0f7fa, #bbdefb, #d1c4e9);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.faq::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,0,0.1) 0%, rgba(0,69,181,0.1) 50%, rgba(255,215,0,0.1) 100%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  animation: pulse 15s infinite alternate;
}

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

.accordion-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 0 15px rgba(0, 69, 181, 0.1);
  transition: box-shadow 0.3s, transform 0.3s;
  border-left: 3px solid var(--gigante-red);
}

.accordion-item:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), 0 0 25px rgba(0, 69, 181, 0.15);
  transform: translateY(-5px);
}

.accordion-header {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 69, 181, 0.1);
  transition: background-color 0.3s;
  position: relative;
  overflow: hidden;
}

.accordion-header::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
  animation: shimmer 2s infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) skewX(-15deg);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(200%) skewX(-15deg);
    opacity: 0;
  }
}

.accordion-header h3 {
  color: var(--gigante-navy);
  font-size: 1.2rem;
  margin: 0;
  transition: color 0.3s;
}

.accordion-icon {
  color: var(--gigante-orange);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, padding 0.5s ease;
}

.accordion-item.active .accordion-header {
  background-color: rgba(255, 83, 0, 0.05);
}

.accordion-item.active .accordion-header h3 {
  color: var(--gigante-orange);
}

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

.accordion-item.active .accordion-content {
  max-height: 3000px;
  padding: 25px;
  overflow-y: auto;
}

/* Urgency Footer */
.urgency {
  padding: 80px 0;
  background: var(--gradient-1);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.urgency::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://cdn.pixabay.com/photo/2022/11/10/00/38/creative-7581718_1280.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.urgency-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.urgency-title {
  font-size: 2rem;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.countdown-item {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 20px;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.countdown-value {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.urgency .btn {
  margin-top: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Footer */
@keyframes gradientMovement {
  0% {
    background-position: 0% 50%;
    background-size: 100% 100%;
  }
  25% {
    background-position: 50% 100%;
    background-size: 110% 110%;
  }
  50% {
    background-position: 100% 50%;
    background-size: 120% 120%;
  }
  75% {
    background-position: 50% 0%;
    background-size: 110% 110%;
  }
  100% {
    background-position: 0% 50%;
    background-size: 100% 100%;
  }
}

@keyframes patternFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
    filter: blur(20px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    filter: blur(25px);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
    filter: blur(20px);
  }
}

footer {
  background: linear-gradient(135deg, #0045B5, #FFD700, #FF0000, #0045B5);
  background-size: 300% 300%;
  animation: gradientMovement 15s ease infinite;
  color: #333333; /* Darker text for better contrast */
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

/* Particle effect for footer */
footer .particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

footer .particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(245, 215, 110, 0.4) 30%, rgba(255, 215, 0, 0.3) 60%, transparent 100%);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5), 0 0 12px rgba(255, 215, 0, 0.2);
  pointer-events: none;
  z-index: 0;
}

footer .particle:nth-child(1) {
  width: 12px;
  height: 12px;
  left: 10%;
  top: 20%;
  animation: particleFloat1 20s infinite linear;
}

footer .particle:nth-child(2) {
  width: 8px;
  height: 8px;
  left: 25%;
  top: 60%;
  animation: particleFloat2 25s infinite linear;
}

footer .particle:nth-child(3) {
  width: 15px;
  height: 15px;
  left: 60%;
  top: 30%;
  animation: particleFloat3 22s infinite linear;
}

footer .particle:nth-child(4) {
  width: 10px;
  height: 10px;
  left: 80%;
  top: 70%;
  animation: particleFloat4 28s infinite linear;
}

@keyframes particleFloat1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    transform: translate(100px, -50px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes particleFloat2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    transform: translate(-80px, -100px) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes particleFloat3 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-120px, 80px) rotate(720deg);
    opacity: 0;
  }
}

@keyframes particleFloat4 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translate(70px, 120px) rotate(-720deg);
    opacity: 0;
  }
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='1' stroke-opacity='0.25'%3E%3Cpath d='M0 50 L100 50 M50 0 L50 100 M0 0 L100 100 M100 0 L0 100' /%3E%3C/g%3E%3Cg fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'%3E%3Cpath d='M25 50 L75 50 M50 25 L50 75' /%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
  z-index: 0;
  animation: patternFloat 8s ease-in-out infinite;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(0,69,181,0.6) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,215,0,0.6) 0%, transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(255,0,0,0.6) 0%, transparent 50%);
  z-index: 0;
  opacity: 0.8;
  animation: glowPulse 10s ease-in-out infinite alternate;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  animation: footerGridFloat 6s ease-in-out infinite alternate;
}

@keyframes footerGridFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}

.footer-info {
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--gigante-orange);
}

.footer-description {
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
  color: #FFFFFF; /* White for readability on colored background */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  z-index: 1;
  position: relative;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--gigante-orange);
  transform: translateY(-5px);
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: #FFFFFF; /* White text for better contrast */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #FFD700; /* Yellow to match hover state */
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #FFFFFF; /* White text for better contrast on colored background */
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links a:hover {
  color: #FFD700; /* Yellow for hover state on colored background */
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.contact-info div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 15px;
  color: var(--gigante-red);
  font-size: 1.2rem;
}

.contact-info a {
  color: #0045B5; /* Blue to match the other links */
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #FF5300; /* Orange to match hover state of other links */
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.9;
  position: relative;
  z-index: 1;
  animation: fadeInOut 4s ease-in-out infinite alternate;
}

@keyframes fadeInOut {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Particle animations for pricing section */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(245, 215, 110, 0.6) 30%, rgba(255, 215, 0, 0.4) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6), 0 0 15px rgba(255, 215, 0, 0.3);
  pointer-events: none;
  z-index: 1;
  animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) {
  width: 15px;
  height: 15px;
  left: 10%;
  top: 20%;
  animation-duration: 25s;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 8px;
  height: 8px;
  left: 20%;
  top: 40%;
  animation-duration: 35s;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 12px;
  height: 12px;
  left: 30%;
  top: 10%;
  animation-duration: 30s;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 10px;
  height: 10px;
  left: 40%;
  top: 60%;
  animation-duration: 28s;
  animation-delay: 1s;
}

.particle:nth-child(5) {
  width: 14px;
  height: 14px;
  left: 50%;
  top: 30%;
  animation-duration: 32s;
  animation-delay: 7s;
}

.particle:nth-child(6) {
  width: 6px;
  height: 6px;
  left: 60%;
  top: 70%;
  animation-duration: 22s;
  animation-delay: 6s;
}

.particle:nth-child(7) {
  width: 18px;
  height: 18px;
  left: 70%;
  top: 15%;
  animation-duration: 38s;
  animation-delay: 3s;
}

.particle:nth-child(8) {
  width: 9px;
  height: 9px;
  left: 80%;
  top: 50%;
  animation-duration: 29s;
  animation-delay: 5s;
}

.particle:nth-child(9) {
  width: 16px;
  height: 16px;
  left: 90%;
  top: 80%;
  animation-duration: 34s;
  animation-delay: 8s;
}

.particle:nth-child(10) {
  width: 11px;
  height: 11px;
  left: 25%;
  top: 85%;
  animation-duration: 27s;
  animation-delay: 9s;
}

.particle:nth-child(11) {
  width: 7px;
  height: 7px;
  left: 65%;
  top: 25%;
  animation-duration: 23s;
  animation-delay: 1.5s;
}

.particle:nth-child(12) {
  width: 13px;
  height: 13px;
  left: 85%;
  top: 65%;
  animation-duration: 31s;
  animation-delay: 2.5s;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(0.8);
    opacity: 0;
    filter: brightness(1.5);
  }
  10% {
    opacity: 0.8;
    filter: brightness(1.2);
  }
  50% {
    opacity: 1;
    filter: brightness(1);
    transform: translate(calc(25vw - 25%), calc(15vh - 25%)) rotate(180deg) scale(1);
  }
  90% {
    opacity: 0.6;
    filter: brightness(0.8);
  }
  100% {
    transform: translate(calc(50vw - 50%), calc(30vh - 50%)) rotate(360deg) scale(0.5);
    opacity: 0;
    filter: brightness(0.5);
  }
}

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-delay-2 {
  animation-delay: 0.4s;
}

.fade-in-delay-3 {
  animation-delay: 0.6s;
}

/* AOS Animation overrides */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

[data-aos="zoom-out"] {
  transform: scale(1.2);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos="zoom-out"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="slide-up"] {
  transform: translateY(100px);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos="slide-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="flip-up"] {
  transform: perspective(2500px) rotateX(-100deg);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos="flip-up"].aos-animate {
  transform: perspective(2500px) rotateX(0);
  opacity: 1;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 20px; /* Moved to the opposite corner (left side) */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00cc00, #009900); /* Green gradient */
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1001; /* Higher than chat widget z-index */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

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

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Side Menu Button */
.side-menu-button {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 8px 0 0 8px;
  background: var(--gigante-red);  /* Changed to red */
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.side-menu-button.show {
  opacity: 1;
  visibility: visible;
}

.side-menu-button:hover {
  background: #cc0000;  /* Darker red on hover */
}

/* Hide side menu button on desktop (768px and above) */
@media (min-width: 768px) {
  .side-menu-button {
    display: none !important;
  }
}

/* Mobile-only side menu button - only show when triggered by "How it works" section */
@media (max-width: 767px) {
  .side-menu-button {
    /* Ensure it's only visible on mobile and when .show class is added */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .side-menu-button.show {
    opacity: 1;
    visibility: visible;
  }
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--gigante-yellow);  /* Changed to yellow */
  color: var(--dark-gray);  /* Changed text color for better contrast */
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.side-menu.open {
  right: 0;
}

.side-menu-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(220, 53, 69, 0.1);
  border-top: 2px solid #dc3545;
}

.side-menu-close {
  cursor: pointer;
  font-size: 18px;
  color: #dc3545;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #dc3545;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.side-menu-close:hover {
  transform: translateY(-2px);
  background: #dc3545;
  color: white;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.side-menu-close span {
  font-family: 'Poppins', sans-serif;
}

.side-menu-content {
  padding: 20px;
}

.side-menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu-content li {
  margin-bottom: 15px;
}

.side-menu-content a {
  color: var(--gigante-blue);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.3s;
}

.side-menu-content a:hover {
  background-color: rgba(0, 69, 181, 0.1);
  transform: translateX(5px);
}

/* Overlay for when side menu is open - REMOVED for cleaner UX */

/* Responsive Design */
@media (min-width: 1025px) {
  .side-nav {
    display: block;
  }
}

@media (max-width: 1200px) {
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .hero-content {
    max-width: 60%;
  }
  
  .service-area-grid {
    gap: 20px;
  }
  
  .flyer-display {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .hero-content {
    max-width: 100%;
    margin-left: 0;
    padding: 20px;
  }
  
  .hero-images {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 30px;
  }
  
  .step-path {
    display: none;
  }
  
  .steps-container {
    flex-direction: column;
    gap: 50px;
  }
  
  .step {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-area-map {
    grid-column: 1;
    grid-row: 1;
  }
  
  .demographic-card {
    grid-column: 1;
    margin-bottom: 20px;
  }
  
  .map-container {
    flex-direction: column;
  }
  
  .map, .drop-dates {
    width: 100%;
  }
  
  .testimonial-slider .swiper-slide {
    max-width: 100%;
  }
  
  .location-tags {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .countdown {
    justify-content: space-around;
  }
  
  .connecting-paths {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  .navbar {
    padding: 0 15px;
    height: 70px;
  }
  
  .mobile-toggle {
    display: none; /* Hide top hamburger button in mobile view since we have side button */
    z-index: 10000;
    position: relative;
  }
  
  /* Feature cards responsive adjustments */
  .feature-card {
    padding: 15px !important;
    margin-bottom: 15px;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  
  .feature-card h5 {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  .feature-card p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Grid adjustments for mobile */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  /* Container padding for expandable content */
  #expandableContent {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  #expandableContent > div {
    padding: 20px 15px !important;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98); /* Changed from purple to white for cleaner look */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    padding: 60px 20px;
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  
  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  
  .nav-links li {
    margin: 5px 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    display: block;
    padding: 15px 20px;
    width: 100%;
    color: white !important;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    margin: 5px 0;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  /* Hide email from mobile menu */
  .nav-links li:nth-child(3) {
    display: none;
  }
  
  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    transform: translateY(-2px);
  }
  
  /* Hide the navigation language toggle on mobile */
  .nav-links .language-toggle {
    display: none;
  }
  
  /* Create a new fixed language toggle for mobile */
  .mobile-language-toggle {
    position: fixed;
    bottom: 70px;
    left: 20px;
    margin: 0;
    padding: 8px 12px !important;
    font-size: 0.75rem !important;
    border-radius: 25px;
    z-index: 10000;
    min-width: auto;
    width: auto;
    background-color: rgba(212, 175, 55, 0.95) !important; /* Gold mobile background */
    border: 1px solid rgba(212, 175, 55, 0.8);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .language-toggle i,
  .mobile-language-toggle i {
    font-size: 0.75rem !important;
    margin-right: 5px;
    color: var(--gigante-navy) !important;
  }
  
  .language-toggle span,
  .mobile-language-toggle span {
    font-size: 0.75rem !important;
    font-weight: 600;
    color: var(--gigante-navy) !important;
  }
  
  /* Make sure language toggle is visible and properly sized when hamburger menu is active */
  .nav-links.active ~ .language-toggle {
    opacity: 1;
    transform: scale(1);
    background-color: rgba(212, 175, 55, 1) !important; /* Gold active menu background */
    z-index: 10001;
    bottom: 20px !important;
    right: 20px !important;
    top: auto !important;
    font-size: 0.75rem !important;
    padding: 8px 12px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  }
  
  .language-toggle:hover,
  .mobile-language-toggle:hover {
    background-color: rgba(212, 175, 55, 1) !important; /* Gold hover background */
    transform: scale(1.05);
  }
  
  .hero {
    padding: 150px 0 60px;
    text-align: center;
    margin-top: 0;
    min-height: 100vh;
  }
  
  .hero-content {
    background-color: rgba(0, 31, 84, 0.7);
    margin-top: 20px;
    padding: 40px 20px 30px;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    white-space: normal;
    overflow: visible;
    width: 100%;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 10px;
    padding: 0 10px;
  }
  
  .hero-paragraph {
    font-size: 1rem;
  }
  
  .benefit-card {
    margin-bottom: 30px;
    padding: 30px 20px;
  }
  
  .benefit-title {
    font-size: 1.5rem;
  }
  
  .demographic-card {
    padding: 15px;
  }
  
  .demographic-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .flyer-display {
    gap: 30px;
  }
  
  .flyer-page {
    width: 90%;
    margin: 0 auto;
  }
  
  .flyer-header {
    font-size: 1.5rem;
    padding: 12px 0;
  }
  
  .countdown {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .countdown-item {
    min-width: 80px;
    padding: 15px;
  }
  
  .countdown-value {
    font-size: 2rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .btn-group {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn-group .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .accordion-header h3 {
    font-size: 1.1rem;
  }
  
  .accordion-content {
    padding: 15px;
  }
  
  .map {
    height: 400px;
  }
  
  .back-to-top, .side-menu-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section-title {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: 20px 15px;
  }
  
  .demographic-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .demographic-icon {
    margin-bottom: 10px;
  }
  
  .header-content h3 {
    font-size: 1.3rem;
  }
  
  .area-totals {
    padding: 20px;
  }
  
  .area-totals h3 {
    font-size: 1.5rem;
  }
  
  .highlight-stat {
    font-size: 1.8rem;
  }
  
  .flyer-display {
    flex-direction: column;
    gap: 20px;
  }
  
  .flyer-page {
    width: 100%;
  }
  
  .spot-legend {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .pricing-card {
    min-width: 100%;
  }
  
  .pricing-header {
    padding: 20px;
  }
  
  .pricing-features {
    padding: 20px;
  }
  
  .pricing-action {
    padding: 0 20px 20px;
  }
  
  .testimonial {
    padding: 20px 15px;
  }
  
  .testimonial-content {
    font-size: 1rem;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
  }
  
  .accordion-header {
    padding: 15px;
  }
  
  .accordion-item.active .accordion-content {
    padding: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .countdown-item {
    min-width: 70px;
    padding: 10px;
  }
  
  .countdown-value {
    font-size: 1.8rem;
  }
  
  .side-menu {
    width: 85%;
    right: -85%;
  }
  
  /* Mobile-specific close button adjustments */
  .side-menu-close {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  
  .side-menu-header {
    padding: 10px 15px;
  }
}

/* Special styles for small height screens */
@media (max-height: 700px) {
  .hero {
    min-height: auto;
    padding: 150px 0 50px;
  }
  
  .hero-content {
    padding: 20px 15px;
  }
  
  .hero-images {
    margin-top: 20px;
  }
  
  section {
    padding: 50px 0;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  margin: auto;
  padding: 30px;
  max-width: 800px;
  width: 90%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  animation: modalAppear 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.jotform-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 20px;
}

.success-message {
  text-align: center;
  padding: 40px 20px;
}

.success-message h2 {
  color: #28a745;
  font-size: 2rem;
  margin-bottom: 20px;
}

.success-message p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

@keyframes modalAppear {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #aaa;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--gigante-red);
}

.modal h2 {
  color: var(--gigante-navy);
  margin-bottom: 10px;
  font-size: 1.8rem;
  text-align: center;
}

.modal p {
  color: var(--dark-gray);
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-group.half {
  flex: 1 0 calc(50% - 15px);
  min-width: 200px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--gigante-navy);
}

.form-group .required {
  color: var(--gigante-red);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gigante-blue);
  box-shadow: 0 0 5px rgba(0, 69, 181, 0.3);
  outline: none;
}

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

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.form-group.checkbox input {
  width: auto;
}

.form-actions {
  text-align: center;
}

.submit-btn {
  background-color: var(--gigante-blue) !important;
  color: var(--white) !important;
  padding: 15px 35px !important;
  font-size: 1.1rem !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 69, 181, 0.3);
}

.submit-btn:hover {
  background-color: #0033a0 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 69, 181, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-group.half {
    width: 100%;
  }
  
  .modal-content {
    width: 95%;
    padding: 20px;
  }
}

/* Old chatbot styles removed - replaced with modern AI assistant */

/* Dollar Icon Animation */
@keyframes dollarFloat {
  0% { 
    transform: translateY(0px) rotateZ(0deg) scale(1); 
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  }
  50% { 
    transform: translateY(-8px) rotateZ(5deg) scale(1.05); 
    filter: drop-shadow(0 8px 16px rgba(255, 215, 0, 0.4));
  }
  100% { 
    transform: translateY(0px) rotateZ(0deg) scale(1); 
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  }
}

.dollar-icon img {
  animation: dollarFloat 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
  will-change: transform, filter;
  backface-visibility: hidden;
}

.dollar-icon:hover img {
  animation-play-state: paused;
  transform: scale(1.15) translateY(-4px);
  filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.5));
}


/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #121212;
    --light-gray: #1e1e1e;
    --dark-gray: #e0e0e0;
  }
  
  body {
    color: var(--dark-gray);
  }
  
  .logo, .nav-links a {
    color: var(--dark-gray);
  }
  
  .language-toggle span, .language-toggle i {
    color: var(--gigante-navy) !important;
  }
  
  header.scrolled {
    background-color: rgba(18, 18, 18, 0.9);
  }
  
  header.scrolled .logo, 
  header.scrolled .nav-links a {
    color: var(--dark-gray);
  }
  
  header.scrolled .language-toggle span, 
  header.scrolled .language-toggle i {
    color: var(--gigante-navy) !important;
  }
  
  .benefit-card, .step-content, .pricing-card, .date-item, .testimonial, .accordion-item {
    background-color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .benefit-title, .step h3, .pricing-name, .date-item h4, .author-info h4, .accordion-header h3 {
    color: #e0e0e0;
  }
  
  .accordion-header {
    background-color: #1a1a1a;
  }
  
  .accordion-item.active .accordion-header {
    background-color: rgba(255, 83, 0, 0.15);
  }
  
  .modal-content {
    background-color: #1a1a1a;
  }
  
  .modal h2, .modal p, .form-group label {
    color: #e0e0e0;
  }
  
  .form-group input,
  .form-group textarea {
    background-color: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--gigante-blue);
  }
  
  /* Old chatbot dark mode styles removed */
}

/* Industry Ticker Animations */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

/* Industry ticker responsive styles */
@media (max-width: 768px) {
  .industry-ticker-container {
    margin: 40px calc(-50vw + 50%) 40px !important;
    padding: 15px 0 !important;
  }
  
  .industry-item {
    font-size: 1.2rem !important;
    margin-right: 60px !important;
  }
  
  .industry-item i {
    margin-right: 10px !important;
  }
}

@media (max-width: 480px) {
  .industry-item {
    font-size: 1rem !important;
    margin-right: 40px !important;
    letter-spacing: 1px !important;
  }
  
  .industry-item i {
    margin-right: 8px !important;
  }
  }
  
  .bot-message {
    background-color: #2a2a2a;
    color: #e0e0e0;
  }
}
/* Typewriter Effect */
.typewriter-cursor::after {
  content: '|';
  animation: blink 1s infinite;
  color: #d4af37;
  font-weight: 100;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.typewriter-text {
  display: inline;
}

/* Hide text initially for typewriter effect */
#typewriter-en, #typewriter-es {
  min-height: 1.2em;
}

/* Typewriter color classes */
.typewriter-color-white {
  color: white;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.typewriter-color-gold {
  color: #d4af37;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.7);
}

.typewriter-color-blue {
  color: #4da6ff;
  text-shadow: 0 0 5px rgba(77, 166, 255, 0.7);
}
}/* CSS continues from line 4796... */

    border-top: 1px solid #2a2a2a;
  }
  
  .service-card {
    border: 1px solid #333;
  }
  
  /* Old chatbot styles removed from dark mode */
}

/* Parallax transition styles - First Parallax */
.parallax-container {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 20%, #0f3460 40%, #533483 60%, #8b1538 80%, #1a1a2e 100%);
    cursor: default; /* Set default cursor to indicate interactive area */
}

/* 3D Moving Elements for First Parallax */
.parallax-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Stars Layer - For cursor-based parallax effect */
.parallax-stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.4);
    animation: twinkle 4s infinite ease-in-out;
    pointer-events: none;
}

.star-1 {
    top: 15%;
    left: 10%;
    width: 3px;
    height: 3px;
    animation-delay: -0.5s;
}

.star-2 {
    top: 25%;
    right: 15%;
    width: 4px;
    height: 4px;
    animation-delay: -1.5s;
}

.star-3 {
    top: 65%;
    left: 20%;
    width: 5px;
    height: 5px;
    animation-delay: -2.5s;
}

.star-4 {
    top: 40%;
    right: 25%;
    width: 2px;
    height: 2px;
    animation-delay: -3.5s;
}

.star-5 {
    top: 70%;
    right: 10%;
    width: 4px;
    height: 4px;
    animation-delay: -4.5s;
}

.star-6 {
    top: 35%;
    left: 40%;
    width: 3px;
    height: 3px;
    animation-delay: -5.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Geometric Shapes Layer - For cursor-based parallax effect */
.parallax-shapes-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
}

.shape-circle {
    top: 20%;
    left: 80%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(79, 195, 247, 0.8);
}

.shape-square {
    bottom: 30%;
    left: 15%;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(212, 175, 55, 0.8);
    transform: rotate(45deg);
}

.shape-triangle {
    top: 60%;
    right: 20%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 60px solid rgba(139, 21, 56, 0.4);
}

.shape-plus {
    top: 25%;
    left: 30%;
    width: 40px;
    height: 40px;
    position: relative;
}

.shape-plus:before,
.shape-plus:after {
    content: '';
    position: absolute;
    background-color: rgba(212, 175, 55, 0.8);
}

.shape-plus:before {
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.shape-plus:after {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.floating-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(83, 52, 131, 0.3), rgba(139, 21, 56, 0.3));
    border: 2px solid rgba(212, 175, 55, 0.4);
    transform-style: preserve-3d;
    animation: floatCube 8s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.floating-cube:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
    animation-duration: 12s;
}

.floating-cube:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -4s;
    animation-duration: 10s;
    width: 40px;
    height: 40px;
}

.floating-cube:nth-child(3) {
    top: 80%;
    left: 70%;
    animation-delay: -6s;
    animation-duration: 14s;
    width: 80px;
    height: 80px;
}

.floating-sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.4), rgba(83, 52, 131, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.5);
    animation: floatSphere 6s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.floating-sphere:nth-child(4) {
    top: 30%;
    right: 25%;
    width: 100px;
    height: 100px;
    animation-delay: -1s;
}

.floating-sphere:nth-child(5) {
    top: 70%;
    left: 20%;
    width: 60px;
    height: 60px;
    animation-delay: -3s;
    animation-duration: 8s;
}

.floating-sphere:nth-child(6) {
    top: 40%;
    left: 50%;
    width: 40px;
    height: 40px;
    animation-delay: -5s;
    animation-duration: 10s;
}

.rotating-pyramid {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(212, 175, 55, 0.3);
    animation: rotatePyramid 15s linear infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.rotating-pyramid:nth-child(7) {
    top: 15%;
    right: 40%;
    animation-delay: -2s;
}

.rotating-pyramid:nth-child(8) {
    bottom: 20%;
    right: 60%;
    animation-delay: -8s;
    border-bottom-color: rgba(139, 21, 56, 0.3);
    filter: drop-shadow(0 0 10px rgba(139, 21, 56, 0.5));
}

.particle-trail {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    animation: particleTrail 12s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.particle-trail:nth-child(9) {
    top: 25%;
    left: 5%;
    animation-delay: -1s;
}

.particle-trail:nth-child(10) {
    top: 50%;
    right: 10%;
    animation-delay: -4s;
}

.particle-trail:nth-child(11) {
    bottom: 30%;
    left: 30%;
    animation-delay: -7s;
}

.particle-trail:nth-child(12) {
    top: 10%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes floatCube {
    0%, 100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% {
        transform: translateY(-30px) rotateX(90deg) rotateY(45deg) rotateZ(30deg);
    }
    50% {
        transform: translateY(-60px) rotateX(180deg) rotateY(90deg) rotateZ(60deg);
    }
    75% {
        transform: translateY(-30px) rotateX(270deg) rotateY(135deg) rotateZ(90deg);
    }
}

@keyframes floatSphere {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-40px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translateY(-20px) scale(0.9);
        opacity: 0.7;
    }
}

@keyframes rotatePyramid {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

@keyframes particleTrail {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(800px) translateY(-200px);
        opacity: 0;
    }
}

/* Mobile Responsiveness for 3D Elements */
@media (max-width: 768px) {
    .parallax-3d-elements {
        display: none; /* Hide complex 3D animations on mobile for performance */
    }
    
    .floating-cube,
    .floating-sphere {
        width: 30px;
        height: 30px;
    }
    
    .rotating-pyramid {
        border-left-width: 15px;
        border-right-width: 15px;
        border-bottom-width: 25px;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .parallax-3d-elements * {
        animation: none !important;
        transform: none !important;
    }
}

/* Second Parallax Container - Purple to Gold Gradient Theme */
#parallax-transition-2 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 15%, #a855f7 30%, #3b82f6 45%, #06b6d4 60%, #10b981 75%, #fbbf24 90%, #f59e0b 100%);
    height: 75vh;
    min-height: 550px;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

/* Second Parallax Layer Styles */
.parallax-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

/* Background Layer - Second Parallax */
.parallax-bg-layer-2 {
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
}

.parallax-bg-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.04) 30.5%, rgba(99, 102, 241, 0.04) 31.5%, transparent 32%),
        linear-gradient(-45deg, transparent 30%, rgba(168, 85, 247, 0.03) 30.5%, rgba(168, 85, 247, 0.03) 31.5%, transparent 32%),
        linear-gradient(90deg, transparent 30%, rgba(251, 191, 36, 0.02) 30.5%, rgba(251, 191, 36, 0.02) 31.5%, transparent 32%);
    background-size: 60px 60px;
    animation: backgroundShift2 25s linear infinite;
}

@keyframes backgroundShift2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Pattern Elements - Second Parallax */
.parallax-bg-pattern-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pattern-element {
    position: absolute;
    opacity: 0.1;
    will-change: transform;
}

.pattern-circle-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation: floatPattern2 12s ease-in-out infinite;
}

.pattern-circle-2 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    border-radius: 50%;
    top: 70%;
    right: 15%;
    animation: floatPattern2 15s ease-in-out infinite reverse;
}

.pattern-triangle-1 {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(59, 130, 246, 0.3);
    top: 25%;
    right: 25%;
    animation: rotatePattern2 20s linear infinite;
}

.pattern-triangle-2 {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(168, 85, 247, 0.3);
    bottom: 30%;
    left: 20%;
    animation: rotatePattern2 18s linear infinite reverse;
}

.pattern-square-1 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.2) 0%, transparent 100%);
    top: 60%;
    left: 60%;
    animation: rotatePattern2 16s linear infinite;
    transform-origin: center;
}

.pattern-square-2 {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.2) 0%, transparent 100%);
    top: 35%;
    left: 75%;
    animation: rotatePattern2 14s linear infinite reverse;
    transform-origin: center;
}

@keyframes floatPattern2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotatePattern2 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mid Layer - Floating Icons - Second Parallax */
.floating-content-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icon-2 {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(99, 102, 241, 0.25) 50%, rgba(251, 191, 36, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
    will-change: transform;
}

.floating-icon-mail {
    top: 20%;
    left: 15%;
    animation: floatIcon2A 8s ease-in-out infinite;
}

.floating-icon-location {
    top: 15%;
    right: 20%;
    animation: floatIcon2B 10s ease-in-out infinite;
}

.floating-icon-users {
    top: 50%;
    left: 10%;
    animation: floatIcon2C 12s ease-in-out infinite;
}

.floating-icon-print {
    top: 70%;
    right: 15%;
    animation: floatIcon2A 9s ease-in-out infinite reverse;
}

.floating-icon-home {
    bottom: 25%;
    left: 70%;
    animation: floatIcon2B 11s ease-in-out infinite reverse;
}

.floating-icon-target {
    top: 35%;
    right: 35%;
    animation: floatIcon2C 7s ease-in-out infinite;
}

@keyframes floatIcon2A {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    33% { transform: translateY(-15px) scale(1.05) rotate(5deg); }
    66% { transform: translateY(10px) scale(0.95) rotate(-5deg); }
}

@keyframes floatIcon2B {
    0%, 100% { transform: translateX(0px) translateY(0px) scale(1); }
    50% { transform: translateX(20px) translateY(-25px) scale(1.1); }
}

@keyframes floatIcon2C {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(90deg) scale(1.05); }
    50% { transform: translateY(0px) rotate(180deg) scale(0.95); }
    75% { transform: translateY(15px) rotate(270deg) scale(1.05); }
}

/* Front Layer Content - Second Parallax */
.parallax-content-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.parallax-title-2 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #a855f7 50%, #8b5cf6 75%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Lexend Deca', sans-serif;
    letter-spacing: 2px;
    animation: titlePulse2 4s ease-in-out infinite;
}

.parallax-subtitle-2 {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: subtitleFade2 6s ease-in-out infinite;
}

@keyframes titlePulse2 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes subtitleFade2 {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* Particle System - Second Parallax */
.parallax-particles-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle-2 {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.8) 0%, rgba(251, 191, 36, 0.6) 50%, transparent 70%);
    border-radius: 50%;
    will-change: transform;
}

.particle-2:nth-child(1) {
    top: 10%;
    left: 20%;
    animation: particleFloat2A 15s linear infinite;
}

.particle-2:nth-child(2) {
    top: 20%;
    left: 80%;
    animation: particleFloat2B 18s linear infinite;
}

.particle-2:nth-child(3) {
    top: 70%;
    left: 10%;
    animation: particleFloat2C 12s linear infinite;
}

.particle-2:nth-child(4) {
    top: 60%;
    right: 15%;
    animation: particleFloat2A 20s linear infinite reverse;
}

.particle-2:nth-child(5) {
    top: 30%;
    left: 50%;
    animation: particleFloat2B 16s linear infinite;
}

.particle-2:nth-child(6) {
    bottom: 20%;
    left: 70%;
    animation: particleFloat2C 14s linear infinite reverse;
}

.particle-2:nth-child(7) {
    top: 80%;
    left: 30%;
    animation: particleFloat2A 22s linear infinite;
}

.particle-2:nth-child(8) {
    top: 15%;
    right: 40%;
    animation: particleFloat2B 19s linear infinite reverse;
}

.particle-2:nth-child(9) {
    top: 45%;
    left: 85%;
    animation: particleFloat2C 17s linear infinite;
}

.particle-2:nth-child(10) {
    bottom: 30%;
    right: 25%;
    animation: particleFloat2A 21s linear infinite reverse;
}

.particle-2:nth-child(11) {
    top: 25%;
    left: 35%;
    animation: particleFloat2B 13s linear infinite;
}

.particle-2:nth-child(12) {
    bottom: 15%;
    right: 60%;
    animation: particleFloat2C 24s linear infinite reverse;
}

@keyframes particleFloat2A {
    0% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px) scale(0.5); opacity: 0; }
}

@keyframes particleFloat2B {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(-50px) rotate(360deg) scale(0.3); opacity: 0; }
}

@keyframes particleFloat2C {
    0% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(30px) scale(0.8); opacity: 0; }
}

/* Mobile Responsiveness for Second Parallax */
@media (max-width: 768px) {
    #parallax-transition-2 {
        height: 60vh;
        min-height: 450px;
    }
    
    .parallax-title-2 {
        font-size: 2.5rem;
        letter-spacing: 1px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        background: linear-gradient(135deg, #ffdd00 0%, #ff6b00 25%, #ff00c8 50%, #a400ff 75%, #4600ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        z-index: 5;
        /* Text stroke effect for better visibility */
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    }
    
    .parallax-subtitle-2 {
        font-size: 1.1rem;
    }
    
    .floating-icon-2 {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .pattern-circle-1,
    .pattern-circle-2 {
        width: 50px;
        height: 50px;
    }
    
    .pattern-triangle-1 {
        border-left-width: 18px;
        border-right-width: 18px;
        border-bottom-width: 31px;
    }
    
    .pattern-triangle-2 {
        border-left-width: 15px;
        border-right-width: 15px;
        border-bottom-width: 26px;
    }
    
    .pattern-square-1 {
        width: 30px;
        height: 30px;
    }
    
    .pattern-square-2 {
        width: 25px;
        height: 25px;
    }
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
    .parallax-layer,
    .parallax-layer-2 {
        transform: none !important;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    #parallax-transition-2 *,
    .parallax-layer-2,
    .floating-icon-2,
    .particle-2,
    .pattern-element {
        animation: none !important;
        transform: none !important;
    }
}/* Third Parallax Section - Space Theme */
#parallax-transition-3 {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 25%, #2c5364 50%, #24243e 75%, #0f0c29 100%);
    height: 75vh;
    min-height: 550px;
    position: relative;
    overflow: hidden;
}

/* Background Layer - Stars */
.parallax-bg-layer-3 {
    background: 
        radial-gradient(circle at 20% 20%, rgba(66, 134, 244, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(40, 53, 147, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

.parallax-bg-overlay-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Stars */
.parallax-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #fff;
    border-radius: 50%;
    animation: twinkle 4s infinite ease-in-out;
}

.star-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.star-2 {
    top: 20%;
    left: 35%;
    width: 2px;
    height: 2px;
    animation-delay: 0.3s;
}

.star-3 {
    top: 25%;
    left: 65%;
    width: 4px;
    height: 4px;
    animation-delay: 0.6s;
}

.star-4 {
    top: 15%;
    left: 80%;
    animation-delay: 0.9s;
}

.star-5 {
    top: 40%;
    left: 10%;
    width: 2px;
    height: 2px;
    animation-delay: 1.2s;
}

.star-6 {
    top: 35%;
    left: 50%;
    width: 3px;
    height: 3px;
    animation-delay: 1.5s;
}

.star-7 {
    top: 45%;
    left: 85%;
    width: 4px;
    height: 4px;
    animation-delay: 1.8s;
}

.star-8 {
    top: 65%;
    left: 25%;
    animation-delay: 2.1s;
}

.star-9 {
    top: 70%;
    left: 65%;
    width: 2px;
    height: 2px;
    animation-delay: 2.4s;
}

.star-10 {
    top: 85%;
    left: 15%;
    width: 3px;
    height: 3px;
    animation-delay: 2.7s;
}

.star-11 {
    top: 80%;
    left: 45%;
    width: 4px;
    height: 4px;
    animation-delay: 3s;
}

.star-12 {
    top: 75%;
    left: 85%;
    animation-delay: 3.3s;
}

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

/* Mid Layer - Floating Objects */
.parallax-mid-layer-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
    z-index: 2;
}

.parallax-objects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.parallax-object {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    will-change: transform;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: pulse3 8s infinite ease-in-out;
}

@keyframes pulse3 {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.envelope {
    top: 30%;
    left: 15%;
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.4), rgba(3, 169, 244, 0.2));
    animation: floatObject3A 10s infinite ease-in-out;
}

.postcard {
    top: 20%;
    right: 20%;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.4), rgba(123, 31, 162, 0.2));
    animation: floatObject3B 12s infinite ease-in-out;
}

.calendar {
    top: 60%;
    left: 25%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.4), rgba(46, 125, 50, 0.2));
    animation: floatObject3C 9s infinite ease-in-out;
}

.rocket {
    top: 65%;
    right: 15%;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.4), rgba(198, 40, 40, 0.2));
    animation: floatObject3A 11s infinite ease-in-out reverse;
}

.chart {
    top: 40%;
    left: 60%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.4), rgba(255, 160, 0, 0.2));
    animation: floatObject3B 14s infinite ease-in-out;
}

.store {
    top: 15%;
    left: 40%;
    background: linear-gradient(135deg, rgba(121, 85, 72, 0.4), rgba(93, 64, 55, 0.2));
    animation: floatObject3C 13s infinite ease-in-out reverse;
}

@keyframes floatObject3A {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    33% { transform: translateY(-25px) scale(1.05) rotate(5deg); }
    66% { transform: translateY(15px) scale(0.95) rotate(-5deg); }
}

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

@keyframes floatObject3C {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(15deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(20px) rotate(-15deg); }
}

/* Connections between objects */
.parallax-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform-origin: left center;
    animation: pulse-connection 4s infinite ease-in-out;
}

@keyframes pulse-connection {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

.connection-1 {
    top: 30%;
    left: 20%;
    width: 200px;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.connection-2 {
    top: 25%;
    left: 45%;
    width: 150px;
    transform: rotate(-15deg);
    animation-delay: 0.8s;
}

.connection-3 {
    top: 45%;
    left: 60%;
    width: 180px;
    transform: rotate(40deg);
    animation-delay: 1.6s;
}

.connection-4 {
    top: 60%;
    left: 30%;
    width: 220px;
    transform: rotate(-30deg);
    animation-delay: 2.4s;
}

.connection-5 {
    top: 40%;
    left: 15%;
    width: 250px;
    transform: rotate(60deg);
    animation-delay: 3.2s;
}

/* Front Layer Content */
.parallax-front-layer-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
    z-index: 3;
}

.parallax-content-3 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.parallax-title-3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff0000; /* Bright red solid color */
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Lexend Deca', sans-serif;
    letter-spacing: 2px;
    position: relative;
}

@keyframes titleGlow3 {
    0%, 100% { text-shadow: 0 0 20px rgba(33, 150, 243, 0.3); }
    50% { text-shadow: 0 0 30px rgba(33, 150, 243, 0.6), 0 0 40px rgba(33, 150, 243, 0.3); }
}

.parallax-subtitle-3 {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-cta-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.parallax-button-3 {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #d4af37, #f1c40f, #d4af37);
    background-size: 200% 200%;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 0 0 rgba(212, 175, 55, 0);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: buttonPulse3 4s infinite ease-in-out, gradientShift 3s ease-in-out infinite;
}

@keyframes buttonPulse3 {
    0%, 100% { box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 0 0 rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.3); }
}

.parallax-button-3:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.parallax-button-3:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
    background-position: 100% 50%;
}

.parallax-button-3:hover:before {
    left: 100%;
}

/* Comets */
.parallax-comets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.comet {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: white;
    border-radius: 50%;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

.comet:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    transform-origin: left center;
    transform: translateX(3px);
}

.comet-1 {
    top: 20%;
    left: 100%;
    animation: cometMove1 10s linear infinite;
    animation-delay: 0s;
}

.comet-2 {
    top: 35%;
    left: 100%;
    animation: cometMove2 15s linear infinite;
    animation-delay: 3s;
}

.comet-3 {
    top: 60%;
    left: 100%;
    animation: cometMove1 12s linear infinite;
    animation-delay: 6s;
}

.comet-4 {
    top: 15%;
    left: 100%;
    animation: cometMove2 18s linear infinite;
    animation-delay: 9s;
}

.comet-5 {
    top: 80%;
    left: 100%;
    animation: cometMove1 14s linear infinite;
    animation-delay: 12s;
}

@keyframes cometMove1 {
    0% { transform: translateX(0) translateY(0) rotate(-15deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(-120vw) translateY(30vh) rotate(-15deg); opacity: 0; }
}

@keyframes cometMove2 {
    0% { transform: translateX(0) translateY(0) rotate(-25deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(-120vw) translateY(40vh) rotate(-25deg); opacity: 0; }
}

/* Mobile Responsiveness for Third Parallax */
@media (max-width: 768px) {
    #parallax-transition-3 {
        height: 60vh;
        min-height: 450px;
    }
    
    .parallax-title-3 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    /* Highly prominent parallax subtitle for mobile - maximum visibility */
    .parallax-subtitle-3 {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        text-align: center !important;
        margin: 30px auto !important;
        padding: 0 15px !important;
        line-height: 1.4 !important;
        opacity: 1 !important;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8) !important;
        max-width: 95% !important;
        letter-spacing: 0.8px !important;
        text-transform: none !important;
        word-spacing: 2px !important;
    }
    
    /* Hide redundant Reserve Now buttons on mobile */
    .parallax-button-3,
    .parallax-cta-3 {
        display: none !important;
    }
    
    /* Reposition postal badge with clearance from envelope icon */
    .badge-price-callout {
        top: -48px !important; /* Additional clearance to prevent touching envelope icon in "Local Mailbox Domination" headline */
        left: -15px !important; /* Maintain horizontal position */
    }
    
    /* Match English hero title size to Spanish version for prominence */
    #typewriter-en {
        font-size: 3.5rem !important; /* Match Spanish version size for equal prominence */
    }
    
    /* Ensure Spanish title maintains proper size and effects on mobile */
    #typewriter-es {
        font-size: 3.5rem !important; /* Ensure consistent size on mobile */
    }
    
    /* Adjust typewriter elements for larger mobile font size */
    #typewriter-en, #typewriter-es {
        min-height: 4.2rem !important; /* Adjust min-height for 3.5rem font size */
        line-height: 1.2 !important; /* Ensure proper line spacing */
    }
    
    /* Ensure typewriter cursor scales properly with larger text */
    .typewriter-cursor::after {
        font-size: 3.5rem !important; /* Match cursor size to text size */
    }
    
    /* Center hero section buttons on mobile - override inline styles */
    .hero-content .btn-group {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        text-align: center !important;
    }
    
    /* Fix Spanish white button size to match English version */
    .hero-content.es .btn-secondary {
        max-width: 200px !important; /* Constrain Spanish button width to match English */
        padding: 12px 16px !important; /* Slightly reduce padding for longer Spanish text */
        font-size: 0.9rem !important; /* Slightly smaller font for better fit */
        line-height: 1.3 !important; /* Optimize line height for compact layout */
        text-align: center !important; /* Ensure centered text alignment */
    }
    
    /* Mobile Footer Redesign - Safe Visual Design with Impact */
    footer#contact {
        background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%) !important; /* Safe static gradient - no animation */
        overflow: hidden !important;
        position: relative !important;
    }
    
    /* Add safe visual elements - no animation or flashing */
    footer#contact::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 4px !important;
        background: linear-gradient(90deg, #3498db 0%, #e74c3c 25%, #f39c12 50%, #27ae60 75%, #9b59b6 100%) !important;
        z-index: 1 !important;
    }
    
    /* Completely hide all animated and potentially flashing elements - but preserve CTA */
    footer .floating-elements,
    footer svg,
    footer [style*="animation"],
    footer [class*="animate"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Hide specific data-aos elements but preserve footer-cta */
    footer [data-aos]:not(.footer-cta) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Ensure footer-cta is always visible despite data-aos */
    footer .footer-cta[data-aos] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Remove specific animated pseudo-elements that could flash - but preserve essential ones */
    footer .sunburst-container::before,
    footer .sunburst-container::after,
    footer .pulse-bg::before,
    footer .pulse-bg::after,
    footer [class*="ray"]::before,
    footer [class*="ray"]::after {
        display: none !important;
        content: none !important;
    }
    
    /* Ensure animated background elements don't flash - but preserve static ones */
    footer div[style*="animation"],
    footer div[class*="animate"] {
        background: none !important;
        background-image: none !important;
        animation: none !important;
    }
    
    /* Clean footer main content */
    .footer-main {
        padding: 40px 0 30px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        align-items: stretch !important;
    }
    
    /* Enhanced footer brand section - visually impactful */
    .footer-brand {
        background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%) !important;
        color: #2c3e50 !important;
        padding: 25px 20px !important;
        border-radius: 15px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
        border-left: 6px solid #3498db !important;
        margin-bottom: 20px !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .footer-brand::before {
        content: '' !important;
        position: absolute !important;
        top: -50% !important;
        right: -50% !important;
        width: 100% !important;
        height: 100% !important;
        background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 50%) !important;
        z-index: 0 !important;
    }
    
    .footer-brand h2,
    .footer-brand h3,
    .footer-brand p {
        color: #2c3e50 !important;
        text-shadow: none !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .footer-brand .brand-header p {
        color: #34495e !important;
        font-weight: 600 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Visually enhanced footer sections */
    .footer-section {
        background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%) !important;
        color: #2c3e50 !important;
        padding: 20px !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
        border-left: 5px solid #e74c3c !important;
        margin-bottom: 15px !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .footer-section::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 2px !important;
        background: linear-gradient(90deg, transparent 0%, #e74c3c 50%, transparent 100%) !important;
    }
    
    .footer-section h4 {
        color: #2c3e50 !important;
        font-weight: 800 !important; /* Increased weight for better visibility */
        margin-bottom: 15px !important;
        text-shadow: none !important;
    }
    
    .footer-section p,
    .footer-section a,
    .footer-section li {
        color: #2c3e50 !important; /* Darker text for better contrast */
        font-weight: 500 !important; /* Added weight for readability */
        text-shadow: none !important;
    }
    
    .footer-section a:hover {
        color: #e74c3c !important;
        text-decoration: underline !important;
        font-weight: 600 !important;
    }
    
    /* Enhanced footer CTA section - ensure full visibility */
    .footer-cta {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 25px !important;
        position: relative !important;
        overflow: visible !important;
        background: none !important;
        padding: 0 !important;
        border: none !important;
    }
    
    /* Remove any pseudo-elements that might interfere */
    .footer-cta::before {
        display: none !important;
        content: none !important;
    }
    
    /* Clean footer bottom */
    .footer-bottom {
        background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%) !important;
        border-top: 2px solid #3498db !important;
        padding: 20px 0 !important;
        margin-top: 20px !important;
        border-radius: 10px 10px 0 0 !important;
    }
    
    .footer-bottom p,
    .footer-bottom a {
        color: #ecf0f1 !important;
        text-shadow: none !important;
    }
    
    .footer-bottom a:hover {
        color: #3498db !important;
    }
    
    /* Remove all footer animations on mobile */
    footer * {
        animation: none !important;
        transform: none !important;
    }
    
    /* Disable AOS animations in footer on mobile */
    footer [data-aos] {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    
    /* Ensure CTA section and privacy links are visible */
    .footer-cta,
    .footer-cta > div,
    .footer-cta h4,
    .footer-cta p,
    .footer-cta .btn,
    .footer-bottom,
    .footer-bottom p,
    .footer-bottom a,
    .footer-links-bottom,
    .footer-links-bottom a {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Specific fix for CTA inner div */
    .footer-cta > div {
        position: relative !important;
        z-index: 2 !important;
        background: linear-gradient(135deg, #d4af37, #ffd700) !important;
        padding: 30px 20px !important;
        border-radius: 20px !important;
        text-align: center !important;
        box-shadow: 0 15px 35px rgba(212,175,55,0.3) !important;
    }
    
    /* Ensure all CTA content and styling is preserved from inline styles */
    .footer-cta > div {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        /* Preserve original inline styles */
        background: linear-gradient(135deg, #d4af37, #ffd700) !important;
        padding: 30px !important;
        border-radius: 20px !important;
        text-align: center !important;
        position: relative !important;
        overflow: hidden !important;
        box-shadow: 0 15px 35px rgba(212,175,55,0.3) !important;
    }
    
    .footer-cta > div > div {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Ensure all CTA text elements are visible and preserve original styling */
    .footer-cta h4,
    .footer-cta p,
    .footer-cta a {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .footer-cta a.btn {
        display: inline-flex !important;
    }
    
    /* Hide Spanish content by default in footer on mobile */
    footer .es {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Show English content by default in mobile footer */
    footer .en {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Special case for buttons and inline elements */
    footer .en.btn,
    footer a.en {
        display: inline-flex !important;
    }
    
    /* When Spanish is active, show Spanish content and hide English */
    body.spanish footer .en {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    body.spanish footer .es {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Special case for Spanish buttons and inline elements when Spanish is active */
    body.spanish footer .es.btn,
    body.spanish footer a.es {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Hide English buttons when Spanish is active */
    body.spanish footer .en.btn,
    body.spanish footer a.en {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Ensure footer CTA yellow container works properly in both languages */
    .footer-cta h4.en,
    .footer-cta p.en,
    .footer-cta .btn.en {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .footer-cta .btn.en {
        display: inline-flex !important;
    }
    
    .footer-cta h4.es,
    .footer-cta p.es,
    .footer-cta .btn.es {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* When Spanish is active, show Spanish CTA content */
    body.spanish .footer-cta h4.en,
    body.spanish .footer-cta p.en,
    body.spanish .footer-cta .btn.en {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    body.spanish .footer-cta h4.es,
    body.spanish .footer-cta p.es,
    body.spanish .footer-cta .btn.es {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    body.spanish .footer-cta .btn.es {
        display: inline-flex !important;
    }
    

    
    /* Specific styling for footer links - centered on mobile */
    .footer-links-bottom {
        display: flex !important;
        gap: 25px !important;
        align-items: center !important;
        justify-content: center !important; /* Center the privacy/terms links */
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-links-bottom a {
        color: #ecf0f1 !important;
        text-decoration: none !important;
        font-size: 0.9rem !important;
        transition: color 0.3s ease !important;
        cursor: pointer !important;
    }
    
    .footer-links-bottom a:hover {
        color: #3498db !important;
        text-decoration: underline !important;
    }
    
    /* Update existing footer-bottom to center content on mobile */
    .footer-bottom {
        text-align: center !important; /* Center all content in footer bottom */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    
    /* Mobile popup modal header - ensure "Secure Your Advertising Spot" stays on one line */
    .jotform-modal-header h2 {
        font-size: 1.3rem !important; /* Smaller font to fit on one line */
        white-space: nowrap !important; /* Prevent text wrapping */
        overflow: hidden !important; /* Hide overflow if needed */
        text-overflow: ellipsis !important; /* Add ellipsis if text is too long */
        line-height: 1.2 !important; /* Tighter line height */
        margin: 0 !important; /* Remove default margins */
        padding: 10px 40px 10px 10px !important; /* Add padding with space for close button */
        text-align: center !important; /* Center the text */
        max-width: calc(100% - 60px) !important; /* Ensure space for close button */
        flex: 1 !important; /* Take available space */
    }
    
    /* For very small screens, reduce font size further */
    @media (max-width: 400px) {
        .jotform-modal-header h2 {
            font-size: 1.1rem !important; /* Even smaller font for very small screens */
            padding: 10px 35px 10px 5px !important; /* Adjust padding for smaller screens */
        }
    }
    
    /* Ensure modal header has proper layout */
    .jotform-modal-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid #eee !important;
        position: relative !important;
    }
    
    /* Ensure Step 2 Complete Application button is fully clickable on mobile */
    #complete-application-btn {
        cursor: pointer !important;
        pointer-events: auto !important;
        touch-action: manipulation !important; /* Optimize for touch */
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important; /* Touch feedback */
        min-height: 48px !important; /* Minimum touch target size */
        min-width: 48px !important; /* Minimum touch target size */
        display: inline-block !important;
        position: relative !important;
        z-index: 1000 !important; /* Ensure it's above other elements */
    }
    
    /* Ensure enabled state is fully clickable */
    #complete-application-btn:not([disabled]) {
        cursor: pointer !important;
        pointer-events: auto !important;
        opacity: 1 !important;
    }
    
    /* Ensure text spans inside button don't interfere with clicks */
    #complete-application-btn span {
        pointer-events: none !important;
    }
    
    /* Ensure wrapper doesn't interfere */
    #complete-application-wrapper {
        position: relative !important;
        display: inline-block !important;
        z-index: 999 !important;
    }
    
    /* Ensure blocker is properly hidden when button is enabled */
    #complete-application-blocker[style*="display: none"] {
        display: none !important;
        pointer-events: none !important;
    }
    
    /* Adjust close button positioning */
    .jotform-close-btn {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: none !important;
        border: none !important;
        font-size: 1.8rem !important;
        cursor: pointer !important;
        color: #999 !important;
        z-index: 10 !important;
    }
    
    .parallax-object {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .connection {
        width: 120px !important;
    }
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
    .parallax-layer,
    .parallax-layer-3 {
        transform: none !important;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    #parallax-transition-3 *,
    .parallax-layer-3,
    .parallax-object,
    .star,
    .comet,
    .connection {
        animation: none !important;
        transform: none !important;
    }
}/* Fourth Parallax Section - Pricing Theme */
#parallax-transition-4 {
    background: linear-gradient(135deg, #000428 0%, #004e92 50%, #001f54 100%);
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.parallax-bg-layer-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
    background: 
        radial-gradient(circle at 20% 20%, rgba(67, 198, 172, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(72, 61, 139, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.parallax-bg-overlay-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.parallax-mid-layer-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
    z-index: 2;
}

/* Pricing Icons */
.pricing-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pricing-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 31, 84, 0.3);
    animation: pricingFloat 6s ease-in-out infinite;
}

@keyframes pricingFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pricing-coin-1 {
    top: 30%;
    left: 15%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    animation-delay: 0s;
}

.pricing-tag-1 {
    top: 20%;
    right: 20%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.2));
    animation-delay: 1s;
}

.pricing-dollar-1 {
    top: 60%;
    left: 25%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.2));
    animation-delay: 2s;
}

.pricing-percent-1 {
    top: 65%;
    right: 15%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(109, 40, 217, 0.2));
    animation-delay: 1.5s;
}

.pricing-chart-1 {
    top: 40%;
    left: 50%;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.3), rgba(236, 72, 153, 0.2));
    animation-delay: 0.5s;
}

/* Pricing Shapes */
.pricing-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pricing-shape {
    position: absolute;
    opacity: 0.4;
    filter: blur(40px);
    animation: shapeFloat 15s ease-in-out infinite alternate;
}

@keyframes shapeFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 0.6; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
}

.pricing-shape-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    border-radius: 50%;
    animation-delay: 0s;
}

.pricing-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    border-radius: 50%;
    animation-delay: 3s;
}

.pricing-shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    border-radius: 50%;
    animation-delay: 1.5s;
}

.pricing-shape-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    border-radius: 50%;
    animation-delay: 4.5s;
}

.parallax-front-layer-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
    z-index: 3;
}

.parallax-content-4 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.parallax-title-4 {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #f5d76e 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Lexend Deca', sans-serif;
    letter-spacing: 2px;
    position: relative;
    animation: titleGlow4 5s infinite ease-in-out;
}

@keyframes titleGlow4 {
    0%, 100% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
    50% { text-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3); }
}

/* Mobile Responsiveness for Fourth Parallax */
@media (max-width: 768px) {
    #parallax-transition-4 {
        height: 50vh;
        min-height: 350px;
    }
    
    .parallax-title-4 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .pricing-element {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .pricing-shape-1,
    .pricing-shape-3 {
        width: 120px;
        height: 120px;
    }
    
    .pricing-shape-2,
    .pricing-shape-4 {
        width: 180px;
        height: 180px;
    }
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
    .parallax-layer-4 {
        transform: none !important;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    #parallax-transition-4 *,
    .pricing-element,
    .pricing-shape {
        animation: none !important;
        transform: none !important;
    }
}/* Badge Price Callout */
.badge-price-callout {
    position: absolute;
    top: 5px;
    left: -15px;
    width: 60px;
    height: 60px;
    z-index: 10;
    transform: rotate(0deg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.badge-price-callout:hover {
    transform: scale(1.05);
}

.badge-price-callout-inner {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid #e74c3c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #e74c3c;
    font-weight: bold;
    box-shadow: 0 0 0 4px #ffffff, inset 0 0 10px rgba(231, 76, 60, 0.1);
    overflow: hidden;
    position: relative;
    padding-bottom: 2px;
}

.badge-price-callout-inner:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle at center, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0) 70%);
    z-index: -1;
}

.badge-price-callout-inner .price {
    font-size: 0.9rem;
    font-weight: 900;
    text-shadow: none;
    line-height: 1;
    color: #e74c3c;
}

.badge-price-callout-inner .cents {
    font-size: 0.7rem;
    font-weight: 900;
    vertical-align: super;
    text-shadow: none;
    color: #e74c3c;
}

.badge-price-callout-inner .subtitle {
    font-size: 0.55rem;
    opacity: 1;
    margin-top: 2px;
    color: #e74c3c;
}

.badge-price-callout-inner .text {
    font-size: 0.42rem;
    opacity: 1;
    margin-top: 1px;
    color: #e74c3c;
    line-height: 0.85;
    padding-bottom: 2px;
}/* Additional Fix for FAQ Accordion Content */
@media (max-width: 1200px) {
  .accordion-item.active .accordion-content {
    max-height: 5000px;
  }
}

/* Rest of your existing styles */

/* Mobile Pricing Section Redesign - Remove Flashing Effects */
@media (max-width: 768px) {
    /* Disable all pricing section animations and create clean mobile design */
    .pricing {
        /* Remove animated background and use clean gradient */
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%) !important;
        animation: none !important;
        padding: 80px 0 !important;
    }
    
    /* Remove all pseudo-element animations and effects */
    .pricing::before,
    .pricing::after {
        display: none !important;
    }
    
    /* Disable floating elements on mobile */
    .pricing-floating-1,
    .pricing-floating-2 {
        display: none !important;
    }
    
    /* Hide animated particles on mobile */
    .pricing .particles-container {
        display: none !important;
    }
    
    /* Clean pricing container for mobile */
    .pricing-container {
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    /* Mobile pricing cards - clean design */
    .pricing-card {
        /* Remove all animations and effects */
        animation: none !important;
        transition: none !important;
        transform: none !important;
        
        /* Clean mobile card styling */
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        border: 2px solid #e9ecef !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: none !important;
        
        /* Ensure proper spacing */
        margin: 0 auto !important;
        max-width: 350px !important;
        width: 100% !important;
    }
    
    /* Remove hover effects on mobile */
    .pricing-card:hover {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        animation-play-state: running !important;
    }
    
    /* Clean pricing header for mobile */
    .pricing-header {
        /* Remove animations and effects */
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
        color: #ffffff !important;
        padding: 25px 20px !important;
        border-radius: 15px 15px 0 0 !important;
        border-bottom: none !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Remove all pseudo-element animations from header */
    .pricing-header::before,
    .pricing-header::after {
        display: none !important;
    }
    
    /* Clean pricing name styling */
    .pricing-name {
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        margin-bottom: 15px !important;
    }
    
    /* Clean pricing price - remove glow animations */
    .pricing-price {
        font-size: 2.5rem !important;
        font-weight: 800 !important;
        color: #f1c40f !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
        animation: none !important;
        margin-bottom: 10px !important;
    }
    
    /* Clean promotional price styling */
    .promotional-price {
        font-size: 2.8rem !important;
        font-weight: 900 !important;
        color: #f39c12 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
        -webkit-text-fill-color: initial !important;
        margin-bottom: 8px !important;
    }
    
    /* Remove glow effect from promotional price */
    .promotional-price div {
        display: none !important;
    }
    
    /* Clean pricing description */
    .pricing-description {
        color: #ffffff !important;
        font-size: 0.9rem !important;
        opacity: 0.9 !important;
        font-weight: 500 !important;
    }
    
    /* Clean pricing features list */
    .pricing-features {
        background: #ffffff !important;
        margin: 0 !important;
        padding: 25px 20px !important;
        border-radius: 0 !important;
    }
    
    .pricing-features li {
        color: #2c3e50 !important;
        font-weight: 500 !important;
        margin-bottom: 12px !important;
        text-shadow: none !important;
        transition: none !important;
        padding-left: 25px !important;
        position: relative !important;
    }
    
    /* Remove hover effects from list items */
    .pricing-features li:hover {
        transform: none !important;
    }
    
    /* Clean checkmark styling */
    .pricing-features li::before {
        content: '✓' !important;
        position: absolute !important;
        left: 0 !important;
        color: #27ae60 !important;
        font-weight: bold !important;
        text-shadow: none !important;
        font-size: 1.1rem !important;
    }
    
    /* Clean pricing action section */
    .pricing-action {
        background: #ffffff !important;
        padding: 20px !important;
        border-radius: 0 0 15px 15px !important;
        text-align: center !important;
        position: relative !important; /* Ensure proper stacking context */
        z-index: 10 !important; /* Above other elements */
    }
    
    /* Ensure first pricing card action section doesn't interfere with button clicks */
    .pricing-card:first-child .pricing-action {
        background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%) !important; /* Gold background */
        color: #ffffff !important; /* White text */
        padding: 20px !important; /* Full padding */
        margin: 0 !important; /* No margins */
        border-radius: 0 0 15px 15px !important; /* Match card radius */
        position: relative !important;
        z-index: 10 !important;
        overflow: visible !important; /* Don't clip button */
    }
    
    /* COMPLETE GOLD COVERAGE for $485 pricing card action section */
    .pricing-card:first-child .pricing-action {
        background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%) !important; /* Gold background */
        color: #ffffff !important; /* White text */
        padding: 20px !important; /* Full padding */
        margin: 0 !important; /* No margins */
        border-radius: 0 0 15px 15px !important; /* Match card radius */
    }
    
    /* Override the Reserve Your Spot button to have RED background for contrast */
    .pricing-card:first-child .pricing-action .btn,
    .pricing-card:first-child .pricing-action a.btn {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important; /* Red button */
        color: #ffffff !important; /* White text */
        border: none !important;
        padding: 15px 25px !important;
        margin-bottom: 15px !important; /* Space before text */
        display: inline-block !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3) !important;
        cursor: pointer !important; /* Ensure clickable cursor */
        pointer-events: auto !important; /* Ensure button is clickable */
        text-decoration: none !important; /* Remove underline */
        transition: all 0.3s ease !important; /* Smooth hover transition */
        
        /* Mobile-specific touch optimizations */
        touch-action: manipulation !important; /* Prevent zoom delays on touch */
        -webkit-tap-highlight-color: rgba(231, 76, 60, 0.3) !important; /* Touch feedback */
        -webkit-touch-callout: none !important; /* Prevent callout on long press */
        -webkit-user-select: none !important; /* Prevent text selection */
        user-select: none !important; /* Prevent text selection */
        
        /* Ensure minimum touch target size */
        min-height: 48px !important;
        min-width: 120px !important;
        
        /* Positioning and layering */
        position: relative !important;
        z-index: 1000 !important; /* Ensure it's above other elements */
        overflow: visible !important; /* Don't clip touch area */
    }
    
    /* Hover effect for the red button */
    .pricing-card:first-child .pricing-action .btn:hover,
    .pricing-card:first-child .pricing-action a.btn:hover {
        background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important; /* Darker red on hover */
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 12px rgba(231, 76, 60, 0.4) !important;
    }
    
    /* Specific targeting for the reserve-now-btn ID to ensure mobile clickability */
    #reserve-now-btn {
        cursor: pointer !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(231, 76, 60, 0.3) !important;
        position: relative !important;
        z-index: 1001 !important; /* Higher than other elements */
        display: inline-block !important;
        min-height: 48px !important;
        min-width: 120px !important;
    }
    
    /* Ensure the button works on active/focus states for mobile */
    #reserve-now-btn:active,
    #reserve-now-btn:focus {
        outline: none !important;
        background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
        transform: translateY(1px) !important;
    }
    
    /* FORCE gold background on the text div specifically */
    .pricing-card:first-child .pricing-action > div:last-child,
    .pricing-card:first-child .pricing-action div[style*="text-align: center"][style*="margin-top"],
    .pricing-card:first-child .pricing-action div[style*="color: rgba(255, 255, 255"] {
        background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%) !important; /* Gold background */
        color: #ffffff !important; /* White text */
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important; /* Strong text shadow */
        padding: 15px 20px !important; /* Good padding */
        margin: 0 !important; /* No margins */
        border-radius: 0 !important; /* No gaps */
        width: 100% !important; /* Full width */
        box-sizing: border-box !important; /* Include padding in width */
    }
    
    /* Ensure all text elements get white color on gold */
    .pricing-card:first-child .pricing-action span,
    .pricing-card:first-child .pricing-action span.en {
        background: transparent !important; /* Don't override parent background */
        color: #ffffff !important; /* White text */
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important; /* Strong shadow */
        font-weight: 600 !important; /* Bold text */
        pointer-events: none !important; /* Let clicks pass through to parent button */
    }
    
    /* Ensure button text inside red button is clickable */
    .pricing-card:first-child .pricing-action .btn span,
    .pricing-card:first-child .pricing-action a.btn span {
        pointer-events: none !important; /* Let clicks pass through to parent button */
        color: #ffffff !important; /* White text on red button */
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    }
    
    /* Hide the original text in the $485 pricing card since we're creating a separate element */
    .pricing-card:first-child .pricing-action div[style*="text-align: center"][style*="margin-top"],
    .pricing-card:first-child .pricing-action > div:last-child {
        display: none !important; /* Hide original text */
    }
    
    /* Style the clickable mobile CTA element between pricing tables */
    .mobile-pricing-cta {
        display: block !important; /* Show in mobile */
        width: 100% !important;
        max-width: 350px !important;
        margin: 20px auto !important;
        order: 1 !important; /* Position between cards */
    }
    
    .mobile-pricing-cta .mobile-cta-link {
        display: block !important;
        width: 100% !important;
        padding: 15px 20px !important;
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important; /* Green background */
        color: #ffffff !important; /* White text */
        text-align: center !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3) !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        line-height: 1.4 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }
    
    /* Hover effect for the clickable CTA */
    .mobile-pricing-cta .mobile-cta-link:hover {
        background: linear-gradient(135deg, #229954 0%, #27ae60 100%) !important; /* Darker green on hover */
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(39, 174, 96, 0.4) !important;
    }
    
    /* Ensure text inside is properly styled */
    .mobile-pricing-cta .mobile-cta-link span {
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        font-weight: 700 !important;
    }
    
    /* Ensure pricing container uses flexbox to position the pseudo-element */
    .pricing-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }
    
    /* Reset the $485 pricing card action to normal white background */
    .pricing-card:first-child .pricing-action {
        background: #ffffff !important; /* Back to white */
        color: #333 !important; /* Dark text */
        padding: 20px !important;
        border-radius: 0 0 15px 15px !important;
    }
    
    /* Ensure sold out button in $863 pricing card remains visible */
    .pricing-card:nth-child(2) .pricing-action,
    .pricing-card:nth-child(2) .pricing-action .btn,
    .pricing-card:nth-child(2) .pricing-action .sold-out-btn {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: #6c757d !important;
        color: white !important;
        cursor: not-allowed !important;
        pointer-events: none !important;
    }
    
    /* Clean button styling - remove all animations */
    .pricing-action .btn {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
        color: #ffffff !important;
        border: none !important;
        padding: 15px 25px !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        text-decoration: none !important;
        display: inline-block !important;
        
        /* Remove all animations and effects */
        box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3) !important;
        transition: all 0.2s ease !important;
        animation: none !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Simple hover effect for buttons */
    .pricing-action .btn:hover {
        background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
        box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4) !important;
        transform: translateY(-1px) !important;
    }
    
    /* Remove button sweep animation */
    .pricing-action .btn::after {
        display: none !important;
    }
    
    /* Clean offer labels - remove animations */
    .offer-label {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
        animation: none !important;
        font-size: 0.75rem !important;
        padding: 4px 10px !important;
        margin-bottom: 8px !important;
    }
    
    /* Clean savings badges - remove animations */
    .savings {
        background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
        animation: none !important;
        font-size: 0.85rem !important;
        padding: 5px 12px !important;
        margin-top: 8px !important;
        box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3) !important;
    }
    
    /* Clean bestseller tags - remove animations */
    .pricing-features + * [style*="animation: pulse"] {
        animation: none !important;
        background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
    }
    
    /* Ensure section title is readable on mobile */
    .pricing .section-title {
        color: #ffffff !important;
        font-size: 2rem !important;
        font-weight: 700 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
        margin-bottom: 40px !important;
        padding: 0 20px !important;
    }
    
    /* Clean wave dividers - reduce complexity */
    .pricing .section-divider {
        opacity: 0.3 !important;
    }
    
    .pricing .section-divider svg {
        height: 60px !important;
    }
    
    /* Remove any remaining inline animations on mobile */
    .pricing * {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        animation-iteration-count: 0 !important;
    }
    
    /* Specific overrides for inline styles that might cause flashing */
    .pricing [style*="animation"],
    .pricing [style*="pulse"],
    .pricing [style*="bounce"] {
        animation: none !important;
    }
    
    /* Ensure proper contrast for all text elements */
    .pricing-card .pricing-header * {
        color: #ffffff !important;
    }
    
    .pricing-card .pricing-features * {
        color: #2c3e50 !important;
    }
    
    .pricing-card .pricing-action * {
        color: #ffffff !important;
    }
    
    /* Clean sold out button */
    .sold-out-btn {
        background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%) !important;
        color: #ffffff !important;
        border: none !important;
        padding: 15px 25px !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        cursor: not-allowed !important;
        opacity: 0.8 !important;
    }
    
    /* Remove diagonal pattern from sold out button */
    .sold-out-btn div[style*="repeating-linear-gradient"] {
        display: none !important;
    }
}

/* Additional mobile-only overrides for pricing animations */
@media (max-width: 768px) {
    /* Force disable any keyframe animations in pricing section */
    @keyframes gradientFlow { to { background-position: 0% 50%; } }
    @keyframes pulsate { to { opacity: 0.5; transform: scale(1); } }
    @keyframes backgroundScroll { to { transform: translate(-50%, -50%) rotate(0deg); } }
    @keyframes colorShift { to { background-color: var(--gigante-blue); } }
    @keyframes cardPulsate { to { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.1); } }
    @keyframes lightSweep { to { transform: translateX(-100%); } }
    @keyframes priceGlow { to { text-shadow: 0 0 15px rgba(255, 215, 0, 0.4); } }
    @keyframes btnSweep { to { transform: translateX(-100%); } }
    @keyframes pulse { to { transform: scale(1); opacity: 1; } }
    @keyframes bounce { to { transform: translateY(0); } }
}

/* Podcast Section - Desktop Only with Performance Optimizations */
@media (min-width: 768px) {
    .podcast-section {
        display: block !important;
        position: relative;
        padding: 120px 0;
        background: linear-gradient(135deg, 
            #003d5c 0%, 
            #0056b3 25%, 
            #1976d2 50%, 
            #2196f3 75%, 
            #64b5f6 100%);
        overflow: hidden;
        min-height: 100vh;
        animation: oceanBackgroundFlow 30s ease-in-out infinite;
        /* Performance optimizations */
        contain: layout style paint;
        will-change: auto;
    }
    
    /* Reduce animations when not in viewport or when user prefers reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .podcast-section,
        .podcast-section *,
        .podcast-section *::before,
        .podcast-section *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    @keyframes oceanBackgroundFlow {
        0%, 100% { 
            background: linear-gradient(135deg, 
                #003d5c 0%, 
                #0056b3 25%, 
                #1976d2 50%, 
                #2196f3 75%, 
                #64b5f6 100%);
        }
        25% { 
            background: linear-gradient(135deg, 
                #1a237e 0%, 
                #303f9f 25%, 
                #3f51b5 50%, 
                #5c6bc0 75%, 
                #9fa8da 100%);
        }
        50% { 
            background: linear-gradient(135deg, 
                #0d47a1 0%, 
                #1565c0 25%, 
                #1976d2 50%, 
                #42a5f5 75%, 
                #90caf9 100%);
        }
        75% { 
            background: linear-gradient(135deg, 
                #01579b 0%, 
                #0277bd 25%, 
                #0288d1 50%, 
                #29b6f6 75%, 
                #81d4fa 100%);
        }
    }
    
    /* Synchronized color pulses with audio playback */
    .podcast-section.playing {
        animation: oceanBackgroundFlow 8s ease-in-out infinite, 
                   audioPulse 2s ease-in-out infinite;
    }
    
    @keyframes audioPulse {
        0%, 100% { 
            filter: brightness(1) saturate(1);
            box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.1);
        }
        50% { 
            filter: brightness(1.2) saturate(1.3);
            box-shadow: inset 0 0 150px rgba(255, 255, 255, 0.2);
        }
    }
    
    /* Enhanced Ocean Themed Background with Parallax Layers */
    .ocean-wave-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            /* Ocean depth gradient */
            linear-gradient(135deg, 
                rgba(0, 30, 60, 0.9) 0%, 
                rgba(0, 60, 120, 0.7) 30%, 
                rgba(20, 80, 140, 0.6) 60%, 
                rgba(40, 120, 180, 0.5) 100%);
        z-index: 1;
        animation: oceanDepthBackground 8s ease-in-out infinite;
        overflow: hidden;
        transform-style: preserve-3d;
    }
    
    /* Parallax Layer 1 - Slowest moving background elements */
    .ocean-wave-background::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: 
            /* Distant underwater elements */
            radial-gradient(circle at 20% 30%, rgba(0, 100, 200, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 80% 70%, rgba(0, 150, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 50% 20%, rgba(100, 200, 255, 0.1) 4px, transparent 4px),
            radial-gradient(circle at 30% 80%, rgba(150, 220, 255, 0.15) 2.5px, transparent 2.5px);
        background-size: 300px 300px, 400px 400px, 500px 500px, 350px 350px;
        animation: parallaxLayer1 25s linear infinite;
        z-index: 1;
        transform: translateZ(-100px);
    }
    
    /* Parallax Layer 2 - Medium speed elements */
    .ocean-wave-background::after {
        content: '';
        position: absolute;
        top: -30%;
        left: -30%;
        width: 160%;
        height: 160%;
        background: 
            /* Mid-distance underwater particles */
            radial-gradient(circle at 40% 60%, rgba(0, 255, 200, 0.4) 1.5px, transparent 1.5px),
            radial-gradient(circle at 70% 30%, rgba(100, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 10% 50%, rgba(200, 255, 255, 0.2) 2.5px, transparent 2.5px);
        background-size: 200px 200px, 250px 250px, 300px 300px;
        animation: parallaxLayer2 15s linear infinite;
        z-index: 2;
        transform: translateZ(-50px);
    }
    
    /* Minimal Aurora Effect - Very Subtle */
    .podcast-section::before {
        content: '';
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100%;
        background: 
            /* Very subtle aurora hint */
            linear-gradient(120deg, 
                transparent 0%, 
                rgba(0, 255, 255, 0.05) 40%, 
                rgba(255, 0, 255, 0.08) 60%, 
                transparent 100%);
        background-size: 400% 100%;
        animation: optimizedAuroraFlow 45s linear infinite;
        z-index: 1;
        transform: translateZ(0px);
        pointer-events: none;
        opacity: 0.15;
        contain: strict;
    }
    
    /* Subtle Lightning Effects During Audio Playback */
    .podcast-section.playing::before {
        background-image: 
            /* Very subtle lightning hints */
            linear-gradient(45deg, transparent 0%, transparent 48%, rgba(255, 255, 255, 0.3) 49%, rgba(255, 255, 255, 0.3) 51%, transparent 52%, transparent 100%),
            linear-gradient(135deg, transparent 0%, transparent 58%, rgba(255, 255, 0, 0.2) 59%, rgba(255, 255, 0, 0.2) 61%, transparent 62%, transparent 100%),
            /* Minimal aurora continues during playback */
            linear-gradient(120deg, 
                transparent 0%, 
                rgba(0, 255, 255, 0.08) 40%, 
                rgba(255, 0, 255, 0.12) 60%, 
                transparent 100%);
        background-size: 400% 400%, 350% 350%, 400% 100%;
        animation: lightningFlash 4s ease-in-out infinite, optimizedAuroraFlow 45s linear infinite;
        opacity: 0.2;
    }
    
    /* Underwater light rays animation */
    @keyframes underwaterLightRays {
        0% { 
            transform: translateX(-30%) translateY(-30%) rotate(0deg);
            opacity: 0.6;
        }
        50% { 
            transform: translateX(30%) translateY(30%) rotate(180deg);
            opacity: 0.9;
        }
        100% { 
            transform: translateX(-30%) translateY(-30%) rotate(360deg);
            opacity: 0.6;
        }
    }
    
    /* Sea creatures swimming */
    .ocean-wave-background::after {
        content: '🐠 🐟 🦑 🐙';
        position: absolute;
        top: 20%;
        left: -20%;
        width: 140%;
        height: 60%;
        font-size: 24px;
        color: rgba(100, 200, 255, 0.4);
        text-shadow: 0 0 10px rgba(100, 200, 255, 0.6);
        animation: seaCreaturesSwimming 25s linear infinite;
        z-index: 3;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    
    /* Sea creatures swimming animation */
    @keyframes seaCreaturesSwimming {
        0% { 
            transform: translateX(-100%) translateY(0px);
            opacity: 0;
        }
        10% { 
            opacity: 0.6;
        }
        50% { 
            transform: translateX(50%) translateY(-20px);
            opacity: 0.8;
        }
        90% { 
            opacity: 0.6;
        }
        100% { 
            transform: translateX(120%) translateY(20px);
            opacity: 0;
        }
    }
    
    /* Ocean depth background animation */
    @keyframes oceanDepthBackground {
        0%, 100% { 
            opacity: 0.8;
            filter: brightness(1) saturate(1);
        }
        25% { 
            opacity: 0.9;
            filter: brightness(1.1) saturate(1.2);
        }
        50% { 
            opacity: 0.95;
            filter: brightness(1.2) saturate(1.3);
        }
        75% { 
            opacity: 0.85;
            filter: brightness(1.05) saturate(1.1);
        }
    }
    
    /* Tidal wave effect when audio starts */
    .podcast-section.playing .ocean-wave-background {
        animation: oceanDepthBackground 4s ease-in-out infinite,
                   tidalWaveEffect 2s ease-out infinite;
    }
    
    @keyframes tidalWaveEffect {
        0% { 
            transform: scale(1) translateY(0);
            filter: brightness(1) hue-rotate(0deg);
        }
        30% { 
            transform: scale(1.05) translateY(-10px);
            filter: brightness(1.3) hue-rotate(30deg);
        }
        60% { 
            transform: scale(1.02) translateY(-5px);
            filter: brightness(1.4) hue-rotate(60deg);
        }
        100% { 
            transform: scale(1) translateY(0);
            filter: brightness(1.1) hue-rotate(90deg);
        }
    }
    
    /* Floating bubbles during audio playback */
    .podcast-section.playing::before {
        content: '○ ◯ ○ ◯ ○ ◯ ○ ◯ ○ ◯ ○ ◯ ○ ◯ ○ ◯';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: rgba(150, 220, 255, 0.6);
        font-size: 16px;
        text-shadow: 0 0 10px rgba(150, 220, 255, 0.8);
        animation: floatingBubbles 8s linear infinite;
        z-index: 4;
        pointer-events: none;
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        padding-bottom: 20px;
    }
    
    @keyframes floatingBubbles {
        0% { 
            transform: translateY(0) scale(1);
            opacity: 0.8;
        }
        25% { 
            transform: translateY(-25%) scale(1.1);
            opacity: 0.9;
        }
        50% { 
            transform: translateY(-50%) scale(0.9);
            opacity: 0.7;
        }
        75% { 
            transform: translateY(-75%) scale(1.2);
            opacity: 0.5;
        }
        100% { 
            transform: translateY(-100%) scale(0.8);
            opacity: 0;
        }
    }
    
    @keyframes realisticOceanFlow {
        0%, 100% { 
            transform: translateY(0) scale(1);
            opacity: 0.7;
        }
        25% { 
            transform: translateY(-15px) scale(1.02);
            opacity: 0.9;
        }
        50% { 
            transform: translateY(-25px) scale(1.05);
            opacity: 0.8;
        }
        75% { 
            transform: translateY(-10px) scale(1.03);
            opacity: 0.85;
        }
    }
    
    @keyframes oceanFlow {
        0%, 100% { 
            transform: translateX(0) translateY(0) scale(1);
            opacity: 0.6;
        }
        25% { 
            transform: translateX(-20px) translateY(-10px) scale(1.05);
            opacity: 0.8;
        }
        50% { 
            transform: translateX(10px) translateY(-20px) scale(1.02);
            opacity: 0.7;
        }
        75% { 
            transform: translateX(-10px) translateY(10px) scale(1.03);
            opacity: 0.9;
        }
    }
    
    /* 3D Floating Ocean Particles */
    .ocean-wave-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 45% 15%, rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px),
            radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 25% 85%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
        background-size: 200px 200px, 150px 150px, 180px 180px, 120px 120px, 250px 250px;
        animation: floatingParticles 25s linear infinite;
        z-index: 2;
    }
    
    @keyframes floatingParticles {
        0% { 
            transform: translateY(0) rotate(0deg);
            opacity: 0.4;
        }
        50% { 
            transform: translateY(-30px) rotate(180deg);
            opacity: 0.8;
        }
        100% { 
            transform: translateY(0) rotate(360deg);
            opacity: 0.4;
        }
    }
    
    /* 3D Wave Layers */
    .ocean-wave-background::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 120%;
        height: 120%;
        background: 
            repeating-linear-gradient(
                45deg,
                transparent,
                transparent 20px,
                rgba(255, 255, 255, 0.03) 20px,
                rgba(255, 255, 255, 0.03) 40px
            ),
            repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 25px,
                rgba(255, 255, 255, 0.02) 25px,
                rgba(255, 255, 255, 0.02) 50px
            );
        animation: wavePattern 30s linear infinite;
        z-index: 1;
    }
    
    @keyframes wavePattern {
        0% { 
            transform: translateX(-50px) translateY(-50px) rotate(0deg);
        }
        100% { 
            transform: translateX(50px) translateY(50px) rotate(360deg);
        }
    }
    
    /* Sound Wave Container */
    .sound-wave-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        z-index: 2;
        opacity: 0.3;
        transition: opacity 0.5s ease;
    }
    
    .podcast-section.playing .sound-wave-container {
        opacity: 0.8;
    }
    
    /* Sparkling Gold Wave Bars - Static when not playing */
    .wave-bar {
        width: 12px;
        height: 20px;
        background: linear-gradient(to top, 
            #b8860b 0%, 
            #daa520 25%,
            #ffd700 50%, 
            #ffef94 75%,
            #fffacd 100%);
        border-radius: 6px;
        /* NO animation by default - only animate when playing */
        box-shadow: 
            0 0 10px rgba(255, 215, 0, 0.4),
            0 0 20px rgba(218, 165, 32, 0.3),
            0 0 30px rgba(255, 215, 0, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(184, 134, 11, 0.5);
        border: 2px solid rgba(255, 215, 0, 0.4);
        position: relative;
        opacity: 0.5;
        transition: all 0.3s ease;
    }
    
    /* Sparkling effect on wave bars */
    .wave-bar::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        height: 40%;
        background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
        border-radius: 3px;
        /* NO sparkle animation by default - only when playing */
    }
    
    @keyframes sparkle {
        0%, 100% { 
            opacity: 0.6;
            transform: scaleY(1);
        }
        50% { 
            opacity: 1;
            transform: scaleY(1.2);
        }
    }
    
    /* Wave bars ONLY animate when podcast is playing */
    .podcast-section.playing .wave-bar {
        animation: oceanWave 0.8s ease-in-out infinite; /* Animation ONLY when playing */
        opacity: 1;
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(218, 165, 32, 0.8),
            0 0 90px rgba(255, 215, 0, 0.6),
            0 0 120px rgba(255, 239, 148, 0.4),
            inset 0 3px 0 rgba(255, 255, 255, 0.9),
            inset 0 -2px 0 rgba(184, 134, 11, 1);
        background: linear-gradient(to top, 
            #b8860b 0%, 
            #daa520 15%,
            #ffd700 30%,
            #ffef94 50%,
            #fffacd 70%,
            #ffffff 85%,
            #fffacd 100%);
        border: 2px solid rgba(255, 215, 0, 1);
    }
    
    .podcast-section.playing .wave-bar::before {
        animation: sparkle 1.5s ease-in-out infinite; /* Sparkle ONLY when playing */
        background: linear-gradient(to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.8) 30%,
            rgba(255, 215, 0, 0.6) 60%,
            transparent 100%);
    }
    
    /* Ocean Wave Animation */
    @keyframes oceanWave {
        0%, 100% { 
            height: 8px; 
            transform: scaleY(1);
        }
        25% { 
            height: 50px; 
            transform: scaleY(1.2);
        }
        50% { 
            height: 100px; 
            transform: scaleY(1.5);
        }
        75% { 
            height: 150px; 
            transform: scaleY(1.8);
        }
    }
    
    /* Podcast Card Container with 3D Perspective and Ambient Particles */
    .podcast-card-container {
        position: relative;
        z-index: 10;
        perspective: 1000px;
        transform-style: preserve-3d;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 60vh;
    }
    
    /* Ocean Foam Particles Around Card Edges */
    .podcast-card-container::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        right: -50px;
        bottom: -50px;
        background-image: 
            /* Ocean foam bubbles */
            radial-gradient(circle at 10% 20%, rgba(200, 240, 255, 0.6) 2px, transparent 2px),
            radial-gradient(circle at 80% 80%, rgba(150, 220, 255, 0.5) 1.5px, transparent 1.5px),
            radial-gradient(circle at 40% 40%, rgba(180, 230, 255, 0.4) 1px, transparent 1px),
            radial-gradient(circle at 90% 10%, rgba(220, 245, 255, 0.7) 2.5px, transparent 2.5px),
            radial-gradient(circle at 20% 90%, rgba(160, 210, 255, 0.5) 1.8px, transparent 1.8px),
            /* Additional foam texture */
            radial-gradient(circle at 60% 30%, rgba(190, 235, 255, 0.3) 1px, transparent 1px),
            radial-gradient(circle at 30% 70%, rgba(170, 225, 255, 0.4) 1.2px, transparent 1.2px),
            radial-gradient(circle at 70% 60%, rgba(210, 240, 255, 0.6) 1.5px, transparent 1.5px);
        background-size: 120px 120px, 100px 100px, 80px 80px, 140px 140px, 110px 110px, 90px 90px, 130px 130px, 95px 95px;
        animation: oceanFoamParticles 20s linear infinite;
        z-index: -1;
        pointer-events: none;
    }
    
    /* Ocean foam particles animation */
    @keyframes oceanFoamParticles {
        0% { 
            transform: rotate(0deg) translateY(0);
            opacity: 0.7;
        }
        25% { 
            transform: rotate(90deg) translateY(-10px);
            opacity: 0.9;
        }
        50% { 
            transform: rotate(180deg) translateY(-5px);
            opacity: 0.8;
        }
        75% { 
            transform: rotate(270deg) translateY(-15px);
            opacity: 0.6;
        }
        100% { 
            transform: rotate(360deg) translateY(0);
            opacity: 0.7;
        }
    }
    
    @keyframes ambientParticles {
        0% { 
            transform: rotate(0deg) translateY(0);
            opacity: 0.6;
        }
        50% { 
            transform: rotate(180deg) translateY(-20px);
            opacity: 1;
        }
        100% { 
            transform: rotate(360deg) translateY(0);
            opacity: 0.6;
        }
    }
    
    /* Enhanced ocean foam during playback */
    .podcast-section.playing .podcast-card-container::before {
        animation-duration: 10s;
        background-image: 
            /* Intensified foam bubbles */
            radial-gradient(circle at 10% 20%, rgba(200, 240, 255, 0.9) 3px, transparent 3px),
            radial-gradient(circle at 80% 80%, rgba(150, 220, 255, 0.8) 2.5px, transparent 2.5px),
            radial-gradient(circle at 40% 40%, rgba(180, 230, 255, 0.7) 2px, transparent 2px),
            radial-gradient(circle at 90% 10%, rgba(220, 245, 255, 0.9) 3.5px, transparent 3.5px),
            radial-gradient(circle at 20% 90%, rgba(160, 210, 255, 0.8) 2.8px, transparent 2.8px),
            /* Additional active foam */
            radial-gradient(circle at 60% 30%, rgba(190, 235, 255, 0.6) 2px, transparent 2px),
            radial-gradient(circle at 30% 70%, rgba(170, 225, 255, 0.7) 2.2px, transparent 2.2px),
            radial-gradient(circle at 70% 60%, rgba(210, 240, 255, 0.8) 2.5px, transparent 2.5px),
            /* Extra bubbling effect */
            radial-gradient(circle at 50% 20%, rgba(240, 250, 255, 0.5) 1.5px, transparent 1.5px),
            radial-gradient(circle at 25% 50%, rgba(180, 220, 255, 0.6) 1.8px, transparent 1.8px);
    }
    
    /* 3D Holographic Floating Card - Performance Optimized */
    .podcast-card {
        width: 600px;
        max-width: 90vw;
        background: 
            /* Simplified gradient for better performance */
            linear-gradient(135deg, 
                rgba(0, 204, 255, 0.08) 0%,
                rgba(255, 0, 150, 0.08) 100%);
        backdrop-filter: blur(15px);
        border-radius: 25px;
        padding: 40px;
        transform-style: preserve-3d;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 
            /* Reduced shadow complexity */
            0 30px 60px rgba(0, 255, 255, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        position: relative;
        overflow: visible;
        animation: optimizedHolographicFloat 12s ease-in-out infinite;
        border: 1px solid rgba(255, 255, 255, 0.1);
        /* Optimized GPU acceleration */
        will-change: transform;
        contain: layout style paint;
    }
    
    /* Simplified Iridescent Edges - Performance Optimized */
    .podcast-card::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: 
            /* Simplified gradient for better performance */
            linear-gradient(45deg, 
                rgba(0, 255, 255, 0.4) 0%, 
                rgba(255, 0, 255, 0.4) 50%, 
                rgba(0, 255, 255, 0.4) 100%);
        background-size: 200% 200%;
        border-radius: 28px;
        z-index: -1;
        animation: simplifiedIridescentShift 8s ease-in-out infinite;
        filter: blur(1px);
        opacity: 0.6;
        transition: opacity 0.3s ease;
        contain: strict;
    }
    

    
    /* Hologram border animation */
    @keyframes hologramBorder {
        0% { 
            background-position: 0% 50%;
            opacity: 0.8;
        }
        50% { 
            background-position: 100% 50%;
            opacity: 1;
        }
        100% { 
            background-position: 200% 50%;
            opacity: 0.8;
        }
    }
    
    /* 3D Tilt Animation */
    @keyframes cardTilt {
        0%, 100% { 
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }
        25% { 
            transform: perspective(1000px) rotateY(3deg) rotateX(1.5deg);
        }
        50% { 
            transform: perspective(1000px) rotateY(0deg) rotateX(-1.5deg);
        }
        75% { 
            transform: perspective(1000px) rotateY(-3deg) rotateX(1.5deg);
        }
    }
    
    /* Enhanced tilt during playback */
    .podcast-section.playing .podcast-card {
        animation-duration: 4s;
        transform: perspective(1000px) rotateY(2deg) rotateX(1deg) scale(1.02);
    }
    
    /* Neon Gradient Border Animation */
    .podcast-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, 
            #d4af37, #ffd700, #4FC3F7, #00B0FF, 
            #9C27B0, #E91E63, #d4af37);
        background-size: 400% 400%;
        border-radius: 27px;
        z-index: -1;
        animation: neonBorderFlow 3s ease-in-out infinite;
    }
    
    @keyframes neonBorderFlow {
        0%, 100% { 
            background-position: 0% 50%;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }
        33% { 
            background-position: 100% 50%;
            box-shadow: 0 0 20px rgba(79, 195, 247, 0.5);
        }
        66% { 
            background-position: 50% 100%;
            box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);
        }
    }
    
    /* Advanced Hover Effects with Isometric Perspective and Depth-of-Field */
    .podcast-card:hover {
        /* Isometric perspective transformation */
        transform: perspective(2000px) 
                   rotateX(30deg) 
                   rotateY(15deg) 
                   rotateZ(2deg) 
                   scale(1.08) 
                   translateZ(100px);
        box-shadow: 
            /* Enhanced levitation shadow */
            0 80px 160px rgba(0, 255, 255, 0.6),
            -50px 60px 120px rgba(255, 0, 255, 0.4),
            40px 40px 80px rgba(0, 255, 0, 0.3),
            0 0 0 3px rgba(255, 255, 255, 0.4),
            inset 0 3px 0 rgba(255, 255, 255, 0.5),
            /* Isometric depth shadows */
            -30px 30px 60px rgba(0, 0, 0, 0.3),
            30px -30px 60px rgba(0, 0, 0, 0.2);
        /* Depth-of-field focus effect */
        filter: brightness(1.2) saturate(1.3);
    }
    
    /* Background blur during hover (depth-of-field effect) */
    .podcast-card:hover ~ .ocean-wave-background,
    .podcast-card:hover ~ .sound-wave-container {
        filter: blur(5px) brightness(0.7);
        transition: filter 0.5s ease;
    }
    
    .podcast-card:hover::before {
        animation-duration: 1s;
        /* Enhanced iridescent shift on hover */
        transform: rotate(180deg) scale(1.1);
        opacity: 1;
    }
    

    
    /* Podcast Content */
    .podcast-content {
        position: relative;
        z-index: 5;
        color: white;
    }
    
    /* Podcast Header */
    .podcast-header {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        gap: 20px;
    }
    
    .podcast-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #d4af37, #ffd700);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #1a1a2e;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        animation: iconPulse 2s ease-in-out infinite;
    }
    
    @keyframes iconPulse {
        0%, 100% { 
            transform: scale(1);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }
        50% { 
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }
    }
    
    .podcast-title h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin: 0 0 10px 0;
        background: linear-gradient(135deg, #00ffff, #ff00ff, #00ff00);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: cyberTitleGlow 3s ease-in-out infinite;
        text-shadow: 
            0 0 10px rgba(0, 255, 255, 0.5),
            0 0 20px rgba(255, 0, 255, 0.3);
    }
    
    @keyframes cyberTitleGlow {
        0%, 100% { 
            filter: brightness(1) hue-rotate(0deg);
        }
        33% { 
            filter: brightness(1.2) hue-rotate(120deg);
        }
        66% { 
            filter: brightness(1.1) hue-rotate(240deg);
        }
    }
    
    .podcast-title p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
        line-height: 1.4;
    }
    
    /* Audio Player Container with Advanced Particle Effects */
    .audio-player-container {
        margin: 30px 0;
        padding: 25px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        position: relative;
        border: 2px solid rgba(0, 255, 255, 0.5);
        box-shadow: 
            0 0 20px rgba(0, 255, 255, 0.3),
            inset 0 0 20px rgba(255, 0, 255, 0.2);
        animation: plasmaEnergyField 3s ease-in-out infinite;
        overflow: visible;
        z-index: 10;
    }
    
    /* Simplified Glowing Orbs - Performance Optimized */
    .podcast-card-container::after {
        content: '';
        position: absolute;
        top: -30px;
        left: -30px;
        right: -30px;
        bottom: -30px;
        background-image: 
            /* Reduced to 4 orbs for better performance */
            radial-gradient(circle at 15% 25%, rgba(0, 255, 255, 0.5) 2px, transparent 4px),
            radial-gradient(circle at 85% 25%, rgba(255, 0, 255, 0.5) 2px, transparent 4px),
            radial-gradient(circle at 15% 75%, rgba(255, 215, 0, 0.5) 2px, transparent 4px),
            radial-gradient(circle at 85% 75%, rgba(0, 255, 128, 0.5) 2px, transparent 4px);
        animation: optimizedFloatingOrbs 16s ease-in-out infinite;
        z-index: 1;
        pointer-events: none;
        border-radius: 40px;
        contain: strict;
    }
    
    /* Constellation Pattern with Connecting Light Lines - Background Only */
    .podcast-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            /* Constellation stars - reduced and repositioned to avoid audio player area */
            radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.6) 1px, transparent 2px),
            radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.5) 1.5px, transparent 2.5px),
            radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.4) 1px, transparent 2px),
            radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.6) 1.2px, transparent 2.2px),
            radial-gradient(circle at 5% 50%, rgba(255, 255, 255, 0.3) 0.8px, transparent 1.8px),
            radial-gradient(circle at 95% 60%, rgba(255, 255, 255, 0.5) 1.3px, transparent 2.3px),
            /* Subtle connecting light lines only in corners */
            linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 15%, transparent 30%),
            linear-gradient(135deg, transparent 70%, rgba(255, 255, 255, 0.1) 85%, transparent 100%);
        animation: constellationTwinkle 15s ease-in-out infinite;
        z-index: 0;
        pointer-events: none;
        opacity: 0.3;
    }
    

    
    /* Plasma energy field animation */
    @keyframes plasmaEnergyField {
        0%, 100% { 
            border-color: rgba(0, 255, 255, 0.5);
            box-shadow: 
                0 0 20px rgba(0, 255, 255, 0.3),
                inset 0 0 20px rgba(255, 0, 255, 0.2);
        }
        25% { 
            border-color: rgba(255, 0, 255, 0.7);
            box-shadow: 
                0 0 30px rgba(255, 0, 255, 0.4),
                inset 0 0 30px rgba(0, 255, 0, 0.3);
        }
        50% { 
            border-color: rgba(0, 255, 0, 0.6);
            box-shadow: 
                0 0 25px rgba(0, 255, 0, 0.4),
                inset 0 0 25px rgba(255, 255, 0, 0.2);
        }
        75% { 
            border-color: rgba(255, 255, 0, 0.8);
            box-shadow: 
                0 0 35px rgba(255, 255, 0, 0.5),
                inset 0 0 35px rgba(0, 255, 255, 0.3);
        }
    }
    
    /* Enhanced plasma during playback */
    .podcast-section.playing .audio-player-container {
        animation: plasmaEnergyField 1.5s ease-in-out infinite,
                   intensePlasmaField 2s linear infinite;
    }
    
    @keyframes intensePlasmaField {
        0%, 100% { 
            filter: brightness(1) saturate(1);
        }
        50% { 
            filter: brightness(1.5) saturate(1.8);
        }
    }
    
    /* Water Ripples from Play Button */
    .audio-player-container::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80px;
        height: 80px;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, 
            rgba(100, 200, 255, 0.2) 0%, 
            rgba(150, 220, 255, 0.3) 30%, 
            rgba(200, 240, 255, 0.1) 70%,
            transparent 100%);
        border-radius: 50%;
        animation: waterRippleEffect 3s ease-in-out infinite;
        z-index: 0;
        pointer-events: none;
    }
    
    /* Water ripple animation */
    @keyframes waterRippleEffect {
        0% { 
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.8;
            box-shadow: 
                0 0 0 0 rgba(100, 200, 255, 0.4),
                0 0 0 0 rgba(150, 220, 255, 0.3);
        }
        30% { 
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0.6;
            box-shadow: 
                0 0 0 10px rgba(100, 200, 255, 0.2),
                0 0 0 20px rgba(150, 220, 255, 0.1);
        }
        60% { 
            transform: translate(-50%, -50%) scale(1.8);
            opacity: 0.3;
            box-shadow: 
                0 0 0 20px rgba(100, 200, 255, 0.1),
                0 0 0 40px rgba(150, 220, 255, 0.05);
        }
        100% { 
            transform: translate(-50%, -50%) scale(2.5);
            opacity: 0;
            box-shadow: 
                0 0 0 30px rgba(100, 200, 255, 0),
                0 0 0 60px rgba(150, 220, 255, 0);
        }
    }
    
    @keyframes goldRippleEffect {
        0% { 
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.8;
        }
        50% { 
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0.4;
        }
        100% { 
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 0;
        }
    }
    
    /* Enhanced water ripple during playback */
    .podcast-section.playing .audio-player-container::before {
        animation: waterRippleEffect 1s ease-in-out infinite,
                   playingWaterRipple 1.5s ease-in-out infinite;
        background: radial-gradient(circle, 
            rgba(100, 200, 255, 0.4) 0%, 
            rgba(150, 220, 255, 0.5) 30%, 
            rgba(200, 240, 255, 0.3) 60%,
            rgba(240, 250, 255, 0.2) 80%,
            transparent 100%);
    }
    
    @keyframes playingWaterRipple {
        0%, 100% { 
            box-shadow: 
                0 0 0 0 rgba(100, 200, 255, 0.6),
                0 0 0 0 rgba(150, 220, 255, 0.4);
        }
        50% { 
            box-shadow: 
                0 0 0 30px rgba(100, 200, 255, 0),
                0 0 0 60px rgba(150, 220, 255, 0);
        }
    }
    
    @keyframes playingGoldRipple {
        0%, 100% { 
            box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
        }
        50% { 
            box-shadow: 0 0 0 25px rgba(255, 215, 0, 0);
        }
    }
    

    
    /* Hyper-Realistic Firework Animation */
    @keyframes realisticFireworkBurst {
        0% { 
            opacity: 0;
            transform: scale(0);
        }
        /* Firework appears suddenly like real fireworks */
        8% { 
            opacity: 0;
            transform: scale(0);
        }
        /* Instant bright flash */
        8.5% { 
            opacity: 1;
            transform: scale(0.1);
        }
        /* Quick expansion with bright center */
        9% { 
            opacity: 1;
            transform: scale(0.8);
        }
        /* Peak brightness and size */
        10% { 
            opacity: 0.9;
            transform: scale(1.2);
        }
        /* Rapid fade like real fireworks */
        12% { 
            opacity: 0.6;
            transform: scale(1.8);
        }
        /* Sparkles linger briefly */
        15% { 
            opacity: 0.3;
            transform: scale(2.2);
        }
        /* Complete fade */
        18% { 
            opacity: 0;
            transform: scale(2.8);
        }
        /* Long pause until next burst */
        100% { 
            opacity: 0;
            transform: scale(2.8);
        }
    }
    
    /* Audio Controls */
    .audio-controls {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        border: none;
        border-radius: 50%;
        background: linear-gradient(135deg, #00ffff, #ff00ff);
        color: #000000;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 
            0 5px 15px rgba(0, 255, 255, 0.5),
            0 0 20px rgba(255, 0, 255, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    /* Digital glitch effect on play button */
    .play-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.8) 50%, 
            transparent 100%);
        animation: digitalGlitch 2s linear infinite;
    }
    
    @keyframes digitalGlitch {
        0% { 
            left: -100%;
            opacity: 0;
        }
        50% { 
            opacity: 1;
        }
        100% { 
            left: 100%;
            opacity: 0;
        }
    }
    
    /* Teleportation particle effect on state change */
    .play-btn.playing::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100px;
        height: 100px;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, 
            rgba(0, 255, 255, 0.8) 0%, 
            rgba(255, 0, 255, 0.6) 30%, 
            rgba(0, 255, 0, 0.4) 60%, 
            transparent 100%);
        border-radius: 50%;
        animation: teleportationParticles 1s ease-out infinite;
        z-index: -1;
    }
    
    @keyframes teleportationParticles {
        0% { 
            transform: translate(-50%, -50%) scale(0);
            opacity: 1;
        }
        50% { 
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 0.8;
        }
        100% { 
            transform: translate(-50%, -50%) scale(3);
            opacity: 0;
        }
    }
    
    .play-btn:hover {
        transform: scale(1.1);
        box-shadow: 
            0 8px 25px rgba(0, 255, 255, 0.7),
            0 0 30px rgba(255, 0, 255, 0.5);
        background: linear-gradient(135deg, #ff00ff, #00ffff);
    }
    
    .play-btn.playing {
        background: linear-gradient(135deg, #ff0080, #8000ff);
        animation: cyberPlayingPulse 1s ease-in-out infinite;
    }
    
    @keyframes cyberPlayingPulse {
        0%, 100% { 
            transform: scale(1);
            box-shadow: 
                0 5px 15px rgba(255, 0, 128, 0.5),
                0 0 25px rgba(128, 0, 255, 0.4);
        }
        50% { 
            transform: scale(1.08);
            box-shadow: 
                0 8px 30px rgba(255, 0, 128, 0.8),
                0 0 40px rgba(128, 0, 255, 0.6);
        }
    }
    
    /* Audio Progress */
    .audio-progress {
        flex: 1;
        min-width: 200px;
    }
    
    .progress-bar {
        width: 100%;
        height: 8px;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(0, 255, 255, 0.3);
        border-radius: 4px;
        cursor: pointer;
        margin-bottom: 10px;
        overflow: hidden;
        box-shadow: 
            inset 0 0 10px rgba(0, 255, 255, 0.2),
            0 0 5px rgba(255, 0, 255, 0.3);
    }
    
    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, 
            #00ffff 0%, 
            #ff00ff 50%, 
            #00ff00 100%);
        border-radius: 3px;
        width: 0%;
        transition: width 0.1s ease;
        box-shadow: 
            0 0 15px rgba(0, 255, 255, 0.8),
            0 0 25px rgba(255, 0, 255, 0.6);
        animation: cyberProgressGlow 2s ease-in-out infinite;
    }
    
    @keyframes cyberProgressGlow {
        0%, 100% { 
            filter: brightness(1) saturate(1);
        }
        50% { 
            filter: brightness(1.3) saturate(1.5);
        }
    }
    
    .time-display {
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* Volume Control */
    .volume-control {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .volume-control i {
        color: #00ffff;
        font-size: 18px;
        animation: volumeIconPulse 2s ease-in-out infinite;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    }
    
    @keyframes volumeIconPulse {
        0%, 100% { 
            color: #00ffff;
            transform: scale(1);
        }
        50% { 
            color: #ff00ff;
            transform: scale(1.1);
        }
    }
    
    #volume-slider {
        width: 80px;
        height: 6px;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(0, 255, 255, 0.3);
        border-radius: 3px;
        outline: none;
        -webkit-appearance: none;
        box-shadow: 
            inset 0 0 5px rgba(0, 255, 255, 0.2),
            0 0 3px rgba(255, 0, 255, 0.3);
    }
    
    #volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        background: linear-gradient(135deg, #00ffff, #ff00ff);
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 
            0 2px 8px rgba(0, 255, 255, 0.5),
            0 0 15px rgba(255, 0, 255, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    /* Podcast Description */
    .podcast-description {
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .podcast-description p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }
}

/* Parallax Animation Keyframes */
@keyframes parallaxLayer1 {
    0% { transform: translateX(0%) translateY(0%) translateZ(-100px); }
    100% { transform: translateX(-100%) translateY(-20%) translateZ(-100px); }
}

@keyframes parallaxLayer2 {
    0% { transform: translateX(0%) translateY(0%) translateZ(-50px); }
    100% { transform: translateX(-80%) translateY(-15%) translateZ(-50px); }
}

@keyframes parallaxLayer3 {
    0% { transform: translateX(0%) translateY(0%) translateZ(0px); }
    100% { transform: translateX(-60%) translateY(-10%) translateZ(0px); }
}

/* Optimized Floating Orbs Animation */
@keyframes optimizedFloatingOrbs {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

/* Constellation Twinkle Animation */
@keyframes constellationTwinkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
        filter: brightness(1);
    }
    25% {
        opacity: 0.9;
        transform: scale(1.05);
        filter: brightness(1.3);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
        filter: brightness(0.8);
    }
    75% {
        opacity: 1;
        transform: scale(1.1);
        filter: brightness(1.5);
    }
}

/* Optimized Aurora Flow Animation */
@keyframes optimizedAuroraFlow {
    0% {
        background-position: 0% 0%;
        opacity: 0.3;
    }
    50% {
        background-position: 100% 0%;
        opacity: 0.5;
    }
    100% {
        background-position: 200% 0%;
        opacity: 0.3;
    }
}

/* Optimized Holographic Float Animation */
@keyframes optimizedHolographicFloat {
    0%, 100% { 
        transform: perspective(1000px) rotateY(0deg) translateY(0px);
    }
    50% { 
        transform: perspective(1000px) rotateY(2deg) translateY(-10px);
    }
}

/* Simplified Iridescent Shift Animation */
@keyframes simplifiedIridescentShift {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.5;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.7;
    }
}

/* Lightning Flash Animation */
@keyframes lightningFlash {
    0%, 90%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    5%, 15% {
        opacity: 1;
        transform: scale(1.2);
    }
    10% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    20%, 25% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    30% {
        opacity: 0;
        transform: scale(1);
    }
}



/* Depth-of-field blur during playback */
.podcast-section.playing .ocean-wave-background {
    filter: blur(2px) brightness(0.8);
    animation: oceanDepthBackground 6s ease-in-out infinite,
               tidalWaveEffect 4s ease-in-out infinite;
}

/* Hide podcast section on mobile */
@media (max-width: 767px) {
    .podcast-section {
        display: none !important;
    }
}

/* Podcast Navigation Link Styling - Desktop & Mobile */
.podcast-nav-item a {
    position: relative;
    background: linear-gradient(135deg, #4FC3F7, #29B6F6) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 600 !important;
}

.podcast-nav-item a::before {
    content: '🎧';
    margin-right: 8px;
    -webkit-text-fill-color: #4FC3F7 !important;
    font-size: 0.9em;
}

.podcast-nav-item a:hover {
    background: linear-gradient(135deg, #29B6F6, #03A9F4) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* Side menu podcast link styling */
.side-menu-content a[href="#podcast"] {
    background: linear-gradient(135deg, #4FC3F7, #29B6F6) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 600 !important;
    position: relative;
}

.side-menu-content a[href="#podcast"]::before {
    content: '🎧';
    margin-right: 10px;
    -webkit-text-fill-color: #4FC3F7 !important;
}

/* Mobile "Why Direct Mail Marketing" Section - Move Infographic Tables to Expandable Content */
@media (max-width: 768px) {
    /* Hide the infographic tables in their original position on mobile */
    .marketing-comparison-container,
    .strategy-container {
        display: none !important;
    }
    
    /* Create mobile-specific infographic tables inside expandable content */
    #expandableContent .mobile-marketing-comparison {
        display: block !important;
        margin: 30px 0 !important;
        padding: 20px !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
        border-radius: 15px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }
    
    /* Mobile comparison table styling */
    #expandableContent .mobile-comparison-table {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin: 20px 0 !important;
    }
    
    /* Mobile comparison columns */
    #expandableContent .mobile-comparison-column {
        padding: 25px !important;
        border-radius: 12px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    }
    
    #expandableContent .mobile-direct-column {
        background: linear-gradient(135deg, #000f24 0%, #002b59 100%) !important;
        color: white !important;
        border: 2px solid #d4af37 !important;
    }
    
    #expandableContent .mobile-indirect-column {
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%) !important;
        color: white !important;
        border: 2px solid #e74c3c !important;
    }
    
    /* Mobile comparison titles */
    #expandableContent .mobile-comparison-title {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        padding-bottom: 10px !important;
        border-bottom: 2px solid rgba(255,255,255,0.3) !important;
    }
    
    #expandableContent .mobile-comparison-title.direct {
        color: #d4af37 !important;
    }
    
    #expandableContent .mobile-comparison-title.indirect {
        color: #e74c3c !important;
    }
    
    /* Mobile comparison lists */
    #expandableContent .mobile-comparison-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #expandableContent .mobile-comparison-list li {
        display: flex !important;
        align-items: center !important;
        margin-bottom: 15px !important;
        padding: 10px !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 8px !important;
        font-size: 0.95rem !important;
    }
    
    #expandableContent .mobile-comparison-list .icon {
        margin-right: 12px !important;
        font-size: 1.2rem !important;
        width: 20px !important;
        text-align: center !important;
    }
    
    #expandableContent .mobile-comparison-list .direct .icon {
        color: #d4af37 !important;
    }
    
    #expandableContent .mobile-comparison-list .indirect .icon {
        color: #e74c3c !important;
    }
    
    /* Mobile strategy summary */
    #expandableContent .mobile-strategy-summary {
        margin-top: 30px !important;
        padding: 25px !important;
        background: linear-gradient(135deg, #0a0f1e 0%, #1a1a2e 100%) !important;
        border-radius: 12px !important;
        color: white !important;
        text-align: center !important;
    }
    
    #expandableContent .mobile-strategy-title {
        color: #d4af37 !important;
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        margin-bottom: 20px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
    
    #expandableContent .mobile-strategy-cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 20px !important;
    }
    
    #expandableContent .mobile-strategy-card {
        padding: 20px !important;
        background: rgba(0,15,36,0.7) !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
        border-radius: 8px !important;
        text-align: left !important;
    }
    
    #expandableContent .mobile-strategy-card h4 {
        color: #d4af37 !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        margin: 0 0 10px 0 !important;
    }
    
    #expandableContent .mobile-strategy-card p {
        color: #ecf0f1 !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }
}

/* Mobile "How It Works" Section Redesign - Remove Flashing Effects */
@media (max-width: 768px) {
    /* Clean "How it works" section background - remove all animations */
    .how-works {
        /* Remove animated background and use clean, static design */
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
        background-image: none !important;
        animation: none !important;
        padding: 80px 0 !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    /* Remove skewed animated background */
    .how-works .skew-bg {
        display: none !important;
    }
    
    /* Hide floating elements on mobile */
    .how-works .floating-element {
        display: none !important;
    }
    
    /* Hide animated connecting paths and dots */
    .how-works .connecting-paths {
        display: none !important;
    }
    
    /* Clean steps container for mobile */
    .how-works .steps-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        margin-top: 40px !important;
        padding: 0 15px !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Mobile step cards - clean design */
    .how-works .step {
        flex: none !important;
        min-width: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        text-align: left !important;
        position: relative !important;
        transition: none !important;
        margin: 0 auto !important;
        max-width: 400px !important;
    }
    
    /* Enhanced step numbers - centered and prominent */
    .how-works .step-number {
        position: static !important;
        display: inline-flex !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 1.8rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        border-radius: 50% !important;
        margin: 0 auto 20px auto !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        border: 4px solid #ffffff !important;
        animation: none !important;
        transition: none !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Clean step number colors - following color wheel theory */
    .how-works .step:nth-child(1) .step-number {
        background: #e74c3c !important; /* Red */
        animation: none !important;
    }
    
    .how-works .step:nth-child(2) .step-number {
        background: #f39c12 !important; /* Orange */
        animation: none !important;
    }
    
    .how-works .step:nth-child(3) .step-number {
        background: #3498db !important; /* Blue */
        animation: none !important;
    }
    
    .how-works .step:nth-child(4) .step-number {
        background: #27ae60 !important; /* Green */
        animation: none !important;
    }
    
    .how-works .step:nth-child(5) .step-number {
        background: #9b59b6 !important; /* Purple */
        animation: none !important;
    }
    
    /* Remove hover effects on mobile */
    .how-works .step:hover .step-number {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Enhanced step content cards with centered layout */
    .how-works .step-content {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        padding: 30px 20px !important;
        border-radius: 15px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08) !important;
        border: none !important;
        border-left: 5px solid #3498db !important;
        backdrop-filter: none !important;
        transition: none !important;
        transform: none !important;
        position: relative !important;
        z-index: 1 !important;
        overflow: hidden !important;
        display: block !important;
        text-align: center !important;
        background-image: none !important;
    }
    
    /* Add subtle pattern overlay to step content */
    .how-works .step-content::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        width: 60px !important;
        height: 60px !important;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%) !important;
        border-radius: 50% !important;
        z-index: 0 !important;
        display: block !important;
    }
    
    /* Remove all pseudo-element effects from step content */
    .how-works .step-content::before,
    .how-works .step-content::after {
        display: none !important;
    }
    
    /* Enhanced color-coded designs for each step */
    .how-works .step:nth-child(1) .step-content {
        border-left-color: #e74c3c !important;
        background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 50%, #ffffff 100%) !important;
        box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    .how-works .step:nth-child(1) .step-content::before {
        background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%) !important;
    }
    
    .how-works .step:nth-child(2) .step-content {
        border-left-color: #f39c12 !important;
        background: linear-gradient(135deg, #fffaf0 0%, #fff3e0 50%, #ffffff 100%) !important;
        box-shadow: 0 8px 25px rgba(243, 156, 18, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    .how-works .step:nth-child(2) .step-content::before {
        background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%) !important;
    }
    
    .how-works .step:nth-child(3) .step-content {
        border-left-color: #3498db !important;
        background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 50%, #ffffff 100%) !important;
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    .how-works .step:nth-child(3) .step-content::before {
        background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%) !important;
    }
    
    .how-works .step:nth-child(4) .step-content {
        border-left-color: #27ae60 !important;
        background: linear-gradient(135deg, #f0fff4 0%, #e8f5e8 50%, #ffffff 100%) !important;
        box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    .how-works .step:nth-child(4) .step-content::before {
        background: radial-gradient(circle, rgba(39, 174, 96, 0.1) 0%, transparent 70%) !important;
    }
    
    .how-works .step:nth-child(5) .step-content {
        border-left-color: #9b59b6 !important;
        background: linear-gradient(135deg, #faf5ff 0%, #f3e5f5 50%, #ffffff 100%) !important;
        box-shadow: 0 8px 25px rgba(155, 89, 182, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    .how-works .step:nth-child(5) .step-content::before {
        background: radial-gradient(circle, rgba(155, 89, 182, 0.1) 0%, transparent 70%) !important;
    }
    
    /* Remove hover effects from step content */
    .how-works .step:hover .step-content {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Enhanced step text content - prominent and centered */
    .how-works .step h3 {
        color: #2c3e50 !important;
        font-size: 1.5rem !important;
        font-weight: 800 !important;
        margin-bottom: 18px !important;
        text-shadow: none !important;
        position: relative !important;
        display: block !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }
    
    /* Remove decorative underlines from headings */
    .how-works .step h3::after {
        display: none !important;
    }
    
    .how-works .step p {
        color: #495057 !important;
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        margin: 0 !important;
        font-weight: 500 !important;
        text-align: center !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Clean section title - show both English and Spanish properly */
    .how-works .section-title {
        color: #2c3e50 !important;
        font-size: 2rem !important;
        font-weight: 700 !important;
        text-shadow: none !important;
        margin-bottom: 40px !important;
        padding: 0 20px !important;
    }
    
    /* Ensure Spanish title is visible when Spanish is active */
    .how-works .section-title.es {
        display: none !important; /* Hidden by default */
    }
    
    /* When Spanish is active, show Spanish title and hide English */
    body.spanish .how-works .section-title.en {
        display: none !important;
    }
    
    body.spanish .how-works .section-title.es {
        display: block !important;
        color: #2c3e50 !important;
        font-size: 2rem !important;
        font-weight: 700 !important;
        text-shadow: none !important;
        margin-bottom: 40px !important;
        padding: 0 20px !important;
    }
    
    /* Step content - show both languages properly with same styling */
    .how-works .step h3.en,
    .how-works .step h3.es {
        font-size: 1.5rem !important;
        font-weight: 800 !important;
        margin-bottom: 18px !important;
        text-align: center !important;
        line-height: 1.3 !important;
        color: #2c3e50 !important;
    }
    
    .how-works .step p.en,
    .how-works .step p.es {
        color: #495057 !important;
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        font-weight: 500 !important;
        text-align: center !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Hide Spanish content by default */
    .how-works .step h3.es,
    .how-works .step p.es,
    .how-works .showcase-badge .es,
    .how-works .showcase-title.es,
    .how-works .showcase-description.es {
        display: none !important;
    }
    
    /* When Spanish is active, show Spanish content and hide English */
    body.spanish .how-works .step h3.en,
    body.spanish .how-works .step p.en,
    body.spanish .how-works .showcase-badge .en,
    body.spanish .how-works .showcase-title.en,
    body.spanish .how-works .showcase-description.en {
        display: none !important;
    }
    
    body.spanish .how-works .step h3.es,
    body.spanish .how-works .step p.es,
    body.spanish .how-works .showcase-badge .es,
    body.spanish .how-works .showcase-title.es,
    body.spanish .how-works .showcase-description.es {
        display: block !important;
        font-size: 1.5rem !important;
        font-weight: 800 !important;
        margin-bottom: 18px !important;
        text-align: center !important;
        line-height: 1.3 !important;
        color: #2c3e50 !important;
    }
    
    body.spanish .how-works .step p.es {
        font-size: 1.05rem !important;
        font-weight: 500 !important;
        line-height: 1.6 !important;
    }
    
    /* Clean section dividers */
    .how-works .section-divider {
        opacity: 0.3 !important;
    }
    
    .how-works .section-divider svg {
        height: 60px !important;
    }
    
    /* Hide bubble animations in bottom divider */
    .how-works .section-divider.bubble-animation circle {
        display: none !important;
    }
    
    /* Enhanced production showcase section */
    .how-works .production-showcase-enhanced {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        padding: 40px 20px !important;
        border-radius: 20px !important;
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3), 0 8px 15px rgba(0, 0, 0, 0.1) !important;
        margin: 50px auto !important;
        max-width: 400px !important;
        border: none !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Add decorative elements to showcase */
    .how-works .production-showcase-enhanced::before {
        content: '' !important;
        position: absolute !important;
        top: -50% !important;
        right: -50% !important;
        width: 100% !important;
        height: 100% !important;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%) !important;
        z-index: 0 !important;
        display: block !important;
    }
    
    /* Hide decorative elements */
    .how-works .showcase-decoration {
        display: none !important;
    }
    
    /* Clean showcase inner content */
    .how-works .showcase-inner {
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Enhanced showcase badge */
    .how-works .showcase-badge {
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%) !important;
        color: #2c3e50 !important;
        padding: 10px 20px !important;
        border-radius: 25px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-bottom: 25px !important;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
        display: inline-block !important;
        position: relative !important;
        z-index: 2 !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Enhanced showcase image container */
    .how-works .showcase-image-container {
        margin: 25px 0 !important;
        position: relative !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
        border: 3px solid rgba(255, 255, 255, 0.3) !important;
        z-index: 2 !important;
    }
    
    /* Remove glow and reflection effects */
    .how-works .showcase-glow,
    .how-works .showcase-reflection {
        display: none !important;
    }
    
    /* Clean showcase frame */
    .how-works .showcase-frame {
        position: relative !important;
        background: #ffffff !important;
        padding: 10px !important;
        border-radius: 10px !important;
    }
    
    /* Clean showcase image */
    .how-works .showcase-image {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        display: block !important;
    }
    
    /* Enhanced showcase title */
    .how-works .showcase-title {
        color: #ffffff !important;
        font-weight: 700 !important;
        font-size: 1.5rem !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
        line-height: 1.3 !important;
        margin: 20px 0 0 0 !important;
        text-align: center !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    /* Remove any remaining animations in how-works section */
    .how-works * {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        animation-iteration-count: 0 !important;
    }
    
    /* Specific overrides for inline animations */
    .how-works [style*="animation"],
    .how-works [data-aos] {
        animation: none !important;
    }
    
    /* Force disable keyframe animations in how-works section */
    @keyframes backgroundShift { to { background-position: 0 0, 0 0, 0 0; } }
    @keyframes pulseBackground { to { background-size: 100% 100%; opacity: 0.25; box-shadow: 0 0 30px rgba(0, 69, 181, 0.2); } }
    @keyframes glowing { to { box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.2); } }
    @keyframes glowingYellow { to { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2); } }
    @keyframes glowingBlue { to { box-shadow: 0 0 10px rgba(0, 69, 181, 0.5), 0 0 20px rgba(0, 69, 181, 0.2); } }
    @keyframes glowingGreen { to { box-shadow: 0 0 10px rgba(0, 168, 107, 0.5), 0 0 20px rgba(0, 168, 107, 0.2); } }
    @keyframes pulseDot { to { transform: scale(1); opacity: 0.6; box-shadow: 0 0 10px rgba(0, 69, 181, 0.4); } }
    @keyframes pulseLine { to { opacity: 0.3; height: 3px; box-shadow: 0 0 5px rgba(0, 69, 181, 0.2); } }
}

/* Desktop View Only - Hide duplicate marketing comparison content in expandable section */
@media (min-width: 769px) {
    /* Hide the duplicate Direct Marketing VS Indirect Marketing content on desktop */
    #expandableContent .mobile-marketing-comparison {
        display: none !important;
    }
}