/* CTA Enhancements for Hike Balkans */

/* Enhanced Primary CTA Buttons */
.btn-cta-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: #fff;
}

.btn-cta-primary:active {
  transform: translateY(0) scale(1.02);
}

/* Pulse animation for urgent CTAs */
.btn-cta-pulse {
  animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
  0% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
}

/* Secondary CTA Buttons */
.btn-cta-secondary {
  background: transparent;
  border: 2px solid #65c0ba;
  color: #65c0ba;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: #65c0ba;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(101, 192, 186, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
  text-decoration: none;
}

.whatsapp-float i {
  margin-top: 2px;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.show {
  transform: translateY(0);
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sticky-cta-info h4 {
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.sticky-cta-info .price {
  font-size: 16px;
  color: #FF6B35;
  font-weight: 700;
}

.sticky-cta-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-sticky-cta {
  background: #FF6B35;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-sticky-cta:hover {
  background: #e55a2b;
  transform: scale(1.05);
  color: #fff;
  text-decoration: none;
}

.btn-sticky-whatsapp {
  background: #25d366;
  border: none;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.btn-sticky-whatsapp:hover {
  background: #128c7e;
  transform: scale(1.1);
  color: #fff;
  text-decoration: none;
}

/* Enhanced Instagram Section */
.instagram-enhanced {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 40px 20px;
  border-radius: 15px;
  margin: 20px 0;
}

.instagram-enhanced h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.instagram-follow-btn {
  background: #fff;
  color: #f5576c;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.instagram-follow-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #f5576c;
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-cta-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .sticky-cta-actions {
    justify-content: center;
  }
  
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
    font-size: 22px;
  }
  
  .btn-cta-primary {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* CTA Spacing and Layout */
.cta-section {
  text-align: center;
  margin: 40px 0;
}

.cta-multiple {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.cta-multiple .btn {
  margin: 5px;
}

/* Enhanced card CTAs */
.card .btn-outline-primary {
  border-color: #FF6B35;
  color: #FF6B35;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card .btn-outline-primary:hover {
  background-color: #FF6B35;
  border-color: #FF6B35;
  color: #fff;
  transform: translateY(-1px);
}
