/* Landing Page Styles */

.landing-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
  padding-top: 70px;
}

/* Navigation */
.navbar.sticky-top {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  transition: all 0.3s ease;
  z-index: 1030 !important;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fff !important;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #206bc4;
  text-decoration: none;
}

.logo-text:hover {
  color: #1a569d;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(32, 107, 196, 0.05) 0%, rgba(32, 107, 196, 0.02) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image .card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hero-image .card:hover {
  transform: translateY(-5px);
}

.icon-lg {
  font-size: 2rem;
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-icon {
  width: 80px;
  height: 80px;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.hover-lift:hover .feature-icon {
  transform: scale(1.1);
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.pricing-card {
  position: relative;
  border-radius: 1rem;
  overflow: visible;
}

.pricing-amount {
  padding: 2rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-section .card {
  border-radius: 1rem;
}

.form-label.required::after {
  content: ' *';
  color: #d63939;
}

/* Footer */
.footer {
  background-color: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 2rem 0;
  }

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand .logo-text {
    font-size: 1.25rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .pricing-amount {
    padding: 1rem 0;
  }

  .display-5 {
    font-size: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.hero-image {
  animation: fadeInUp 0.8s ease-out;
}

.hero-image {
  animation-delay: 0.2s;
}

/* Additional utility classes */
.bg-primary-lt {
  background-color: rgba(32, 107, 196, 0.1) !important;
}

.bg-azure-lt {
  background-color: rgba(66, 153, 225, 0.1) !important;
}

.bg-green-lt {
  background-color: rgba(47, 179, 68, 0.1) !important;
}

.bg-orange-lt {
  background-color: rgba(247, 103, 7, 0.1) !important;
}

.bg-blue-lt {
  background-color: rgba(32, 107, 196, 0.1) !important;
}

.bg-purple-lt {
  background-color: rgba(174, 62, 201, 0.1) !important;
}

.bg-pink-lt {
  background-color: rgba(214, 57, 147, 0.1) !important;
}

.text-azure {
  color: #4299e1 !important;
}

.text-orange {
  color: #f76707 !important;
}

.text-purple {
  color: #ae3ec9 !important;
}

.text-pink {
  color: #d63993 !important;
}

.text-blue {
  color: #206bc4 !important;
}

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

/* Button enhancements */
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: #206bc4;
  border-color: #206bc4;
}

.btn-primary:hover {
  background-color: #1a569d;
  border-color: #1a569d;
}

.btn-outline-primary {
  color: #206bc4;
  border-color: #206bc4;
}

.btn-outline-primary:hover {
  background-color: #206bc4;
  border-color: #206bc4;
  color: #fff;
}

/* Card enhancements */
.card {
  border-radius: 0.75rem;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Icon utilities */
.icon {
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  margin-right: 0.25rem;
}

/* Button icon alignment */
.btn .icon {
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Loading states */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

/* Alert styles */
.alert {
  border-radius: 0.5rem;
}

/* Badge styles */
.badge {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Progress bar */
.progress {
  height: 0.5rem;
  border-radius: 1rem;
}

.progress-bar {
  border-radius: 1rem;
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  z-index: 1;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background: #206bc4;
  border-radius: 0.25rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.ribbon::before {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  width: 0;
  height: 0;
  content: '';
  border: 0.25rem solid transparent;
  border-top-color: #1a569d;
  border-right-color: #1a569d;
}

.ribbon-bookmark::before {
  border-color: #1a569d;
  border-bottom-color: transparent;
}

.ribbon-top {
  top: 1rem;
}

.ribbon.bg-green {
  background: #2fb344;
}

.ribbon.bg-green::before {
  border-top-color: #26923a;
  border-right-color: #26923a;
}

.ribbon.bg-green.ribbon-bookmark::before {
  border-color: #26923a;
  border-bottom-color: transparent;
}

/* Accessibility improvements */
.form-check-input:focus {
  border-color: #206bc4;
  box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25);
}

.form-control:focus,
.form-select:focus {
  border-color: #206bc4;
  box-shadow: 0 0 0 0.25rem rgba(32, 107, 196, 0.25);
}

/* Link styles */
.link-secondary {
  color: #667382;
  text-decoration: none;
}

.link-secondary:hover {
  color: #206bc4;
  text-decoration: underline;
}
