/* 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 {
  background: linear-gradient(90deg, #f0f4ff 60%, #e0e7ff 100%) !important;
  box-shadow: 0 4px 18px rgba(37,99,235,0.08);
  border-bottom: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%) !important;
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
}
.navbar-brand {
  font-size: 2rem;
  color: #2563eb !important;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(37,99,235,0.08);
  transition: color 0.3s;
}
.navbar-brand:hover {
  color: #1e40af !important;
}
.navbar-nav .nav-link {
  color: #22292f !important;
  font-weight: 600;
  font-size: 1.1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 1.5rem;
  padding: 0.5rem 1.2rem;
  transition: background 0.2s, color 0.2s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  background: #2563eb;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}

/* 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, #2563eb 0%, #1e40af 100%);
  color: #fff;
  border-top: none;
  box-shadow: 0 -4px 18px rgba(37,99,235,0.08);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
footer h6 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
footer ul {
  padding-left: 0;
}
footer li, .footer-link {
  color: #c7d2fe !important;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  cursor: pointer;
}
footer li:hover, .footer-link:hover {
  color: #fff !important;
  text-decoration: underline;
}
footer .modal-title {
  color: #2563eb;
}
footer .text-center small {
  color: #c7d2fe;
  letter-spacing: 1px;
}

/* 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;
}

/* === Animation & Effects === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}
[data-animate] {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
[data-animate="fade"] {
  animation-name: fadeIn;
}
.card, .feature-item, .steps-wrapper, .navbar, .btn, .section-title {
  will-change: transform, opacity;
}

/* Animate on scroll (simple JS can add [data-animate] to elements) */
.card, .feature-item, .steps-wrapper, .section-title {
  transition: box-shadow 0.3s, transform 0.3s, opacity 0.3s;
}

/* === Extra Hover Effects === */
.card:hover, .feature-item:hover {
  box-shadow: 0 12px 32px rgba(37,99,235,0.18), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-8px) scale(1.03);
}
.btn:hover, .btn:focus {
  box-shadow: 0 6px 18px rgba(37,99,235,0.18);
  transform: translateY(-2px) scale(1.03);
}
.feature-item {
  cursor: pointer;
}

/* === Responsive Improvements === */
@media (max-width: 991px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 0.5rem 0.8rem;
  }
  footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  .section-title {
    font-size: 1.25rem !important;
  }
  .card, .feature-item {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575px) {
  .container, .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .card, .feature-item {
    border-radius: 0.75rem !important;
  }
  .btn, .btn-lg {
    padding: 0.5rem 1.25rem !important;
    font-size: 1rem !important;
  }
  .navbar-brand {
    font-size: 1.1rem;
  }
  footer h6 {
    font-size: 1rem;
  }
  footer {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .step-item {
    align-items: flex-start !important;
    margin-bottom: 1rem !important;
  }
  .step-number {
    width: 28px !important;
    height: 28px !important;
    font-size: 1rem !important;
    margin-right: 0.75rem !important;
    margin-top: 2px;
  }
  .steps-wrapper h5 {
    font-size: 1rem !important;
    margin-bottom: 0.2rem !important;
  }
  .steps-wrapper p {
    font-size: 0.92rem !important;
  }
}

/* === Utility Classes for Animations === */
.animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}
.fadeInUp {
  animation-name: fadeInUp;
}
.fadeIn {
  animation-name: fadeIn;
}

/* --- Hero Section Enhancements --- */
.hero-section {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  padding: 4rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}
.hero-section .display-4 {
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 4px 24px rgba(30,64,175,0.18);
}
.hero-section .lead {
  font-size: 1.35rem;
  color: #e0e7ff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(30,64,175,0.10);
}
.hero-section .btn {
  font-size: 1.2rem;
  padding: 0.85rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 6px 24px rgba(37,99,235,0.18);
  font-weight: 700;
}
.hero-section .btn:hover {
  background: #1e40af;
  color: #fff;
  box-shadow: 0 10px 32px rgba(37,99,235,0.22);
}
.hero-section .img-fluid {
  border-radius: 2rem;
  border: 4px solid #fff;
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
  max-width: 95%;
  margin-top: 1rem;
  background: #fff;
}
@media (max-width: 991px) {
  .hero-section {
    padding: 2.5rem 0 2rem 0;
  }
  .hero-section .display-4 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding: 2rem 0 1.5rem 0;
    text-align: center;
  }
  .hero-section .display-4 {
    font-size: 1.5rem;
  }
  .hero-section .img-fluid {
    margin-top: 2rem;
    max-width: 100%;
  }
} 