:root {
  --corporate-blue: #0056b3;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover {
  background-color: var(--corporate-blue) !important;
  border-color: var(--corporate-blue) !important;
}

.text-primary {
  color: var(--corporate-blue) !important;
}

a {
  color: var(--corporate-blue);
}

a:hover {
  color: #003a75;
}

/* Updated for MDBootstrap compatibility */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--corporate-blue);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f4f7fc; /* Light matte blue background */
}

/* Curved section containers */
.section-container {
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 4px 32px rgba(0, 86, 179, 0.12);
  margin: 32px 0;
  padding: 56px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 86, 179, 0.18);
}

/* Banner section styling */
.banner-section {
  background: linear-gradient(135deg, #e8f2ff 0%, #f4f7fc 100%);
  border-radius: 0 0 30px 30px;
  margin-bottom: 30px;
}

/* Feature cards enhancement */
.feature-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 3px 15px rgba(0, 86, 179, 0.08);
  transition: all 0.3s ease;
  border: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.15);
}

/* Testimonial cards enhancement */
.testimonial-card {
  background: white;
  border-radius: 18px;
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.12);
}

/* Step number badges */
.step-badge {
  background: linear-gradient(135deg, var(--corporate-blue), #007bff);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

/* Enhanced button styling */
.btn-enhanced {
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.btn-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

/* Mobile screenshot styling */
.mobile-screenshot {
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 86, 179, 0.2);
  transition: transform 0.3s ease;
}

.mobile-screenshot:hover {
  transform: scale(1.02);
}

/* Footer enhancement */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  border-radius: 0 !important;
  margin-top: 50px;
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  z-index: auto;
}

/* Section titles */
.section-title {
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
}

/* Rating stars enhancement */
.rating i {
  color: #ffc107;
  text-shadow: 0 1px 3px rgba(255, 193, 7, 0.3);
}

/* App store badges container */
.app-badges {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.app-badges img {
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.app-badges img:hover {
  transform: scale(1.05);
}

/* Updated form styles for MDBootstrap */
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: #6c757d;
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.container-fluid.p-0 {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

/* Anti-spam honeypot field - Completely invisible */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
  z-index: -1 !important;
}

/* Math CAPTCHA styling */
.math-captcha {
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.math-captcha label {
  color: #495057;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}

.math-captcha input {
  width: 100px !important;
  display: inline-block;
  margin-left: 10px;
}

/* Security notice styling */
.security-notice {
  background-color: #e7f3ff;
  border-left: 4px solid var(--corporate-blue);
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 4px;
  font-size: 14px;
  color: #0056b3;
}

/* Form validation enhancements */
.alert-success {
  background-color: #d4edda !important;
  border-color: #c3e6cb !important;
  color: #155724 !important;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #28a745;
}

.alert-danger {
  background-color: #f8d7da !important;
  border-color: #f5c6cb !important;
  color: #721c24 !important;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #dc3545;
}

/* Form field focus enhancements */
.form-control:focus {
  border-color: var(--corporate-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Submit button enhancements */
.puprple_btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.puprple_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.puprple_btn:active {
  transform: translateY(0);
}
