/* EverMo Solutions - Custom Styles */

/* Gradient Hero */
.gradient-hero {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

/* Gradient Section */
.gradient-section {
  background: linear-gradient(180deg, #F3F4F6 0%, #E5E7EB 100%);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1E3A8A;
  border-radius: 4px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Service cards hover effect */
.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Button styles */
.btn-primary {
  background-color: #F59E0B;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #D97706;
}

.btn-secondary {
  background-color: #1E3A8A;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #1e40af;
}

.btn-outline {
  background-color: transparent;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
  border: 2px solid white;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: white;
  color: #1E3A8A;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Form styles */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #1E3A8A;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: white;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: #1E3A8A;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  font-size: 1rem;
  resize: vertical;
  min-height: 120px;
}

.form-textarea:focus {
  outline: none;
  border-color: #1E3A8A;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.25rem;
  cursor: pointer;
}

/* Card styles */
.card {
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #E5E7EB;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: #1E3A8A;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Icon container */
.icon-container {
  width: 3rem;
  height: 3rem;
  background-color: rgba(30, 58, 138, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #1E3A8A;
}

.icon-container-lg {
  width: 4rem;
  height: 4rem;
  background-color: rgba(30, 58, 138, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container-lg svg {
  width: 2rem;
  height: 2rem;
  color: #1E3A8A;
}

/* Header dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 14rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  display: none;
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #6B7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #F3F4F6;
  color: #1E3A8A;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid #E5E7EB;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: #6B7280;
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: #1E3A8A;
}

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: 500;
  z-index: 9999;
  animation: slideIn 0.3s ease;
}

.toast-success {
  background-color: #059669;
}

.toast-error {
  background-color: #DC2626;
}

.toast-info {
  background-color: #2563EB;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Quick Reference Box */
.quick-reference {
  background-color: #F3F4F6;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

/* Opt-in Example Box */
.opt-in-example {
  background-color: #EFF6FF;
  border: 2px solid #BFDBFE;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.opt-in-demo {
  background-color: white;
  padding: 1rem;
  border-radius: 0.375rem;
  border: 1px solid #E5E7EB;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  
  .show-mobile {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
  
  .show-desktop {
    display: block !important;
  }
}

/* Link styles */
a.text-link {
  color: #1E3A8A;
  text-decoration: underline;
}

a.text-link:hover {
  color: #1e40af;
}

/* List styles */
.list-check li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.list-check li svg {
  flex-shrink: 0;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: #059669;
}

/* Step indicator */
.step-circle {
  width: 4rem;
  height: 4rem;
  background-color: #1E3A8A;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-circle span {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}
