/* Enhanced Marketing Page Styles */

/* Hero Section Enhancements */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-3 {
  width: 40px;
  height: 40px;
  top: 40%;
  left: 20%;
  animation-delay: 4s;
}

.floating-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  animation: slideInDown 1s ease-out;
}

.animate-text {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-subtitle {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.animate-buttons {
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-stats {
  animation: fadeInUp 1s ease-out 1.2s both;
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(237,43,41,0.15);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(237,43,41,0.2);
}

/* Stats Section */
.stat-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(237,43,41,0.1);
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(237,43,41,0.1);
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #ed2b29, #dc2626) border-box;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(237,43,41,0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ed2b29, #dc2626);
  color: white;
  margin: 0 auto;
}

/* Video Section */
.video-placeholder {
  position: relative;
  overflow: hidden;
}

.video-overlay {
  background: rgba(237,43,41,0.3);
  transition: background 0.3s ease;
}

.video-placeholder:hover .video-overlay {
  background: rgba(237,43,41,0.5);
}

.btn-play {
  width: 80px;
  height: 80px;
  font-size: 24px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ed2b29, #dc2626);
  border: none;
  color: white;
}

.btn-play:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(237, 43, 41, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(237, 43, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(237, 43, 41, 0); }
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

/* Lead Magnet Section */
.lead-magnet-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 15%;
  animation-delay: 6s;
}

.lead-magnet-content {
  position: relative;
  z-index: 2;
}

.lead-magnet-features .feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
}

/* Case Studies */
.case-study-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #ed2b29;
  color: #ed2b29;
  background: transparent;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #ed2b29, #dc2626) !important;
  border-color: #ed2b29 !important;
  color: white !important;
}

.case-item {
  transition: all 0.3s ease;
}

.case-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  visibility: hidden;
}

.case-metrics {
  background: rgba(237,43,41,0.02);
  border-radius: 8px;
  padding: 12px;
}

.metric-item {
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid rgba(237,43,41,0.05);
}

.metric-value {
  font-size: 18px;
  font-weight: bold;
  color: #ed2b29;
}

.metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Progress Bars */
.progress-bar {
  transition: width 2s ease-in-out;
}

/* Guarantee Section */
.guarantee-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.guarantee-card {
  position: relative;
  z-index: 2;
}

.point-number {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Contact Lead Section */
.contact-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.contact-form-card {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-stats .stat-item {
    margin-bottom: 15px;
  }
  
  .case-study-filters {
    gap: 5px;
  }
  
  .filter-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #ed2b29;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: #dc2626;
  transform: scale(1.1);
}
