/* Get Started Modal Styling */
.get-started-section {
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.get-started-section:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.bg-primary-light {
  background-color: rgba(52, 152, 219, 0.1) !important;
}

.bg-success-light {
  background-color: rgba(46, 204, 113, 0.1) !important;
}

#getStartedModal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}

#getStartedModal .modal-header {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  padding: 1.5rem;
}

#getStartedModal .modal-body {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

#getStartedModal .btn-lg {
  padding: 12px 24px;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

#getStartedModal .btn-primary:hover {
  transform: translateY(-2px);
}

#getStartedModal .btn-outline-primary:hover {
  transform: translateY(-2px);
}

/* Get Started Button Animation */
#getStartedBtn, #getStartedBtnMobile {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#getStartedBtn::before, #getStartedBtnMobile::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

#getStartedBtn:hover::before, #getStartedBtnMobile:hover::before {
  left: 100%;
}

#getStartedBtn:hover, #getStartedBtnMobile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

#getStartedBtn:active, #getStartedBtnMobile:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Modal Animation */
#getStartedModal.fade .modal-dialog {
  transform: scale(0.8) translateY(-50px);
  transition: all 0.3s ease;
}

#getStartedModal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

/* Features icons animation */
#getStartedModal .fa {
  transition: transform 0.3s ease;
}

#getStartedModal .col-4:hover .fa {
  transform: scale(1.2);
  color: #2980b9 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .get-started-section {
    padding: 1rem;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
  }
  
  .icon-circle i {
    font-size: 1.5rem !important;
  }
  
  #getStartedModal .modal-body {
    padding: 2rem 1rem !important;
  }
}

/* Custom notification-style popup */
.notification-popup {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.notification-popup.show {
  transform: translateX(0);
}

.notification-popup .notification-header {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  padding: 1rem;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-popup .notification-body {
  padding: 1.5rem;
}

/* Alternative notification style */
@media (max-width: 576px) {
  .notification-popup {
    right: 10px;
    left: 10px;
    max-width: none;
    top: 70px;
  }
} 