/* Custom styles for Vendra SaaS Landing Page */

/* Mobile responsive navigation */
@media (max-width: 768px) {
  .mobile-logo {
    margin-left: -15px;
  }
  
  .mobile-signin {
    margin-right: -15px;
    position: absolute;
    right: 15px;
  }
  
  .mobile-signin-btn {
    background-color: white !important;
    color: #3056d3 !important;
    border: 2px solid #3056d3 !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
  }
  
  .ud-header.sticky .mobile-signin-btn {
    background-color: #3056d3 !important;
    color: white !important;
    border: 2px solid #3056d3 !important;
  }
  
  .mobile-signin-btn:hover {
    background-color: #3056d3 !important;
    color: white !important;
    text-decoration: none !important;
  }
}

/* Safari Modal Compatibility */
.modal.show {
  display: block !important;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Safari form validation */
input:invalid {
  border-color: #dc3545;
}

input:valid {
  border-color: #28a745;
}

/* Feature Icon Container Colors */
.feature-cart::before { background: linear-gradient(135deg, #ff6b35, #ff8c42) !important; }
.feature-package::before { background: linear-gradient(135deg, #4dabf7, #74c0fc) !important; }
.feature-coin::before { background: linear-gradient(135deg, #fab005, #fcc419) !important; }
.feature-whatsapp::before { background: linear-gradient(135deg, #25d366, #51cf66) !important; }
.feature-mobile::before { background: linear-gradient(135deg, #7c3aed, #9c88ff) !important; }
.feature-wallet::before { background: linear-gradient(135deg, #20c997, #51cf66) !important; }
.feature-stats::before { background: linear-gradient(135deg, #e03131, #fa5252) !important; }
.feature-lock::before { background: linear-gradient(135deg, #fd7e14, #ff922b) !important; }
.feature-timer::before { background: linear-gradient(135deg, #ffd43b, #ffe066) !important; }
.feature-apartment::before { background: linear-gradient(135deg, #495057, #6c757d) !important; }
.feature-users::before { background: linear-gradient(135deg, #51cf66, #69db7c) !important; }
.feature-files::before { background: linear-gradient(135deg, #339af0, #74c0fc) !important; }

/* Feature backgrounds to match */
.feature-cart { background: linear-gradient(135deg, #ff6b35, #ff8c42) !important; }
.feature-package { background: linear-gradient(135deg, #4dabf7, #74c0fc) !important; }
.feature-coin { background: linear-gradient(135deg, #fab005, #fcc419) !important; }
.feature-whatsapp { background: linear-gradient(135deg, #25d366, #51cf66) !important; }
.feature-mobile { background: linear-gradient(135deg, #7c3aed, #9c88ff) !important; }
.feature-wallet { background: linear-gradient(135deg, #20c997, #51cf66) !important; }
.feature-stats { background: linear-gradient(135deg, #e03131, #fa5252) !important; }
.feature-lock { background: linear-gradient(135deg, #fd7e14, #ff922b) !important; }
.feature-timer { background: linear-gradient(135deg, #ffd43b, #ffe066) !important; }
.feature-apartment { background: linear-gradient(135deg, #495057, #6c757d) !important; }
.feature-users { background: linear-gradient(135deg, #51cf66, #69db7c) !important; }
.feature-files { background: linear-gradient(135deg, #339af0, #74c0fc) !important; }

/* Pricing section styles */
.ud-pricing-body ul {
  margin-bottom: 15px;
}

.feature-toggle-btn {
  background: none;
  border: 1px solid #ddd;
  color: #666;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.feature-toggle-btn:hover {
  background: #f8f9fa;
  border-color: #3056d3;
  color: #3056d3;
}

/* Live Demo Button */
.live-demo-btn {
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 9999;
  display: none;
  background: rgba(48, 86, 211, 0.9);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(48, 86, 211, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  align-items: center;
  gap: 8px;
  animation: pulse 2s infinite;
}

.live-demo-btn:hover {
  background: rgba(48, 86, 211, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(48, 86, 211, 0.4);
  color: white;
  text-decoration: none;
}

.live-demo-btn i {
  font-size: 18px;
  margin-right: 5px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(48, 86, 211, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(48, 86, 211, 0.5);
  }
  100% {
    box-shadow: 0 4px 20px rgba(48, 86, 211, 0.3);
  }
}

@media (max-width: 768px) {
  .live-demo-btn {
    right: 20px;
    bottom: 30px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* How to Start Section Styles */
.ud-how-to-start {
  padding: 100px 0;
  background: #f8f9fa;
}

.ud-single-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.ud-single-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ud-step-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3056d3, #4c6ef5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-big-number {
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.ud-step-content {
  flex: 1;
}

.ud-step-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 15px;
}

.ud-step-desc {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.ud-start-info {
  margin-top: 50px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.ud-start-final-text {
  font-size: 18px;
  color: #1a202c;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .ud-single-step {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }
  
  .ud-step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .step-big-number {
    font-size: 28px;
  }
  
  .ud-step-title {
    font-size: 20px;
  }
  
  .ud-start-final-text {
    font-size: 16px;
  }
}