/* Ultra-trendy ABBA Voyage-inspired additions */

/* Massive hero typography with animations */
.hero h1 {
  font-size: 7rem !important;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: titleGlow 3s ease-in-out infinite alternate, titleFloat 4s ease-in-out infinite;
  text-shadow: 
    0 0 20px var(--neon-green),
    0 0 40px var(--neon-green),
    0 0 60px var(--neon-green),
    0 0 80px rgba(124, 255, 0, 0.5);
  transform-origin: center;
  transition: all 0.3s ease;
}

.hero h1:hover {
  transform: scale(1.05);
  letter-spacing: 0.05em;
}

@keyframes titleGlow {
  0% {
    text-shadow: 
      0 0 20px var(--neon-green),
      0 0 40px var(--neon-green),
      0 0 60px var(--neon-green);
  }
  100% {
    text-shadow: 
      0 0 30px var(--neon-green),
      0 0 60px var(--neon-green),
      0 0 90px var(--neon-green),
      0 0 120px rgba(124, 255, 0, 0.6);
  }
}

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

.hero .tagline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: taglinePulse 2s ease-in-out infinite;
  text-shadow: 0 0 30px var(--neon-green);
}

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

.hero .subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .subtitle.animated-subtitle {
  color: var(--neon-green);
  animation: fadeInUp 1.2s ease-out, subtleGlow 3s ease-in-out infinite alternate;
  text-shadow: 0 0 15px rgba(124, 255, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

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

@keyframes subtleGlow {
  0% {
    text-shadow: 0 0 10px rgba(124, 255, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(124, 255, 0, 0.6), 0 0 30px rgba(124, 255, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.5);
  }
}

/* Quote/Testimonial style */
.quote-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.quote-card {
  background: rgba(124, 255, 0, 0.05);
  border-left: 4px solid var(--neon-green);
  padding: 2rem;
  border-radius: 8px;
}

.quote-card h4 {
  font-size: 1.5rem;
  color: var(--neon-green);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.quote-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.quote-source {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--neon-green);
  font-style: normal;
  font-weight: 600;
}

/* Big CTA sections */
.cta-massive {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--neon-green) 0%, #66CC00 100%);
  color: #000;
}

.cta-massive h2 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
  color: #000;
}

.cta-massive p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-massive .btn {
  background: #000;
  color: var(--neon-green);
  font-size: 1.3rem;
  padding: 1.5rem 4rem;
  border: 3px solid #000;
}

.cta-massive .btn:hover {
  background: transparent;
  border-color: #000;
  color: #000;
}

/* Section headers - bigger */
.section-header-big {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-big h2 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-header-big p {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

/* EAST cards - more dramatic */
.east-card-new {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.east-card-new:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(124, 255, 0, 0.4);
}

.east-card-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.east-card-new:hover img {
  transform: scale(1.15);
}

.east-card-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 60%);
  z-index: 1;
}

.east-card-new-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  z-index: 2;
}

.east-card-new h3 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--neon-green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.east-card-new p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 5rem !important;
  }
  
  .hero .tagline {
    font-size: 2.5rem;
  }
  
  .section-header-big h2 {
    font-size: 3.5rem;
  }
  
  .cta-massive h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem !important;
  }
  
  .hero .tagline {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  .section-header-big h2 {
    font-size: 2.5rem;
  }
  
  .section-header-big p {
    font-size: 1.3rem;
  }
  
  .cta-massive h2 {
    font-size: 2.5rem;
  }
  
  .cta-massive p {
    font-size: 1.3rem;
  }
  
  .east-card-new h3 {
    font-size: 2.5rem;
  }
  
  .east-card-new-content {
    padding: 2rem;
  }
}

/* Storytelling emphasis */
.story-emphasis {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  animation: fadeIn 1.5s ease-out, textGlow 2s ease-in-out infinite alternate;
  text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
}

.story-emphasis.animated-text {
  animation: fadeIn 1.5s ease-out, textGlow 2s ease-in-out infinite alternate, slideInDown 1s ease-out;
}

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

@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
  }
  100% {
    text-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green), 0 0 60px rgba(124, 255, 0, 0.5);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Interactive buttons */
.hero .btn {
  animation: buttonFloat 3s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(124, 255, 0, 0.6);
}

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

/* More dynamic spacing */
.section-mega {
  padding: 10rem 2rem;
}

@media (max-width: 768px) {
  .section-mega {
    padding: 6rem 2rem;
  }
}
