/* Global Styles */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
  min-height: 100vh;
  color: #22292f;
}

/* Navbar Styles */
.navbar {
  border-bottom: 1px solid #e0e7ff;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 1px;
}

/* Section Styles */
.section-title {
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.5px;
}

/* Card Styles */
.card, .card-body, .card-footer {
  border-radius: 1.25rem !important;
}

.card {
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(37,99,235,0.12), 0 1.5px 6px rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,99,235,0.12), 0 1.5px 6px rgba(0,0,0,0.04);
}

/* Button Styles */
.btn, .btn-lg {
  border-radius: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary, .btn-warning {
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}

.btn-primary {
  background: #2563eb;
  border: none;
  padding: 0.75rem 2rem;
}

.btn-primary:hover, .btn-outline-primary:hover {
  background: #1e40af;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

.btn-warning:hover {
  background: #eab308;
  color: #fff;
}

/* Form Styles */
.form-control, .form-select {
  border-radius: 1rem;
  min-height: 48px;
  border: 1px solid #e0e7ff;
}

.form-control:focus, .form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.25rem rgba(37,99,235,0.1);
}

/* QR Box Styles */
.qr-box img {
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}

/* List Styles */
.list-group-numbered > .list-group-item::before {
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 0.75rem;
  padding: 0.3em 0.4em;
}

/* Section Backgrounds */
#plans {
  background: linear-gradient(120deg, #f0f4ff 60%, #e0e7ff 100%);
}

#subscription {
  background: linear-gradient(120deg, #e0e7ff 60%, #f0f4ff 100%);
}

#contact {
  background: linear-gradient(120deg, #f0f4ff 60%, #e0e7ff 100%);
}

/* Footer Styles */
footer {
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
  color: #fff;
  border-top: none;
}

footer a, .footer-link {
  color: #c7d2fe !important;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover, .footer-link:hover {
  color: #fff !important;
  text-decoration: underline;
}

/* Modal Styles */
.modal-header {
  background: #f0f4ff;
}

/* Steps Box Styles */
.steps-box {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(37,99,235,0.08);
}

.steps-box h5 {
  color: #2563eb;
  font-weight: 600;
}

.steps-box i {
  color: #2563eb;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Plan Popular Badge */
.plan-popular {
  position: absolute;
  top: 0;
  right: 0;
  background: #2563eb;
  color: #fff;
  padding: 0.25rem 1rem;
  border-bottom-left-radius: 0.5rem;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 2;
  letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
  }
} 