
/* === CUSTOM OVERRIDES & COMPONENTS === */

/* Primary brand color */
.bg-primary {
  background-color: #0474ED;
}
.hover\:bg-primary-dark:hover {
  background-color: #0368CE;
}
.text-primary {
  color: #0474ED;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Hero */
.hero {
  background: url('/assets/hero-bg.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #ffffff;
  border-left: 4px solid #4f46e5;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 0.5rem;
  transition: opacity 0.3s ease;
}
.toast.hidden {
  opacity: 0;
  pointer-events: none;
}
.toast .close-btn {
  cursor: pointer;
}

/* Services Grid */
.service-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.1);
}
.service-icon {
  width: 3rem;
  height: 3rem;
}

/* How it Works */
.step-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #6366f1;
}

/* Why Choose section */
.why-choose {
  background-color: #f9fafb;
  padding: 3rem 0;
}

/* Stats Counters */
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
}
.stat-label {
  color: #6b7280;
}

/* Testimonials */
.testimonial-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
}

/* FAQ Accordion */
.faq-item .faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-top: 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 0.5rem;
}

/* Download Banner */
.download-banner {
  background-color: #6366f1;
  color: #ffffff;
}
.download-banner .btn {
  background-color: #ffffff;
  color: #6366f1;
  transition: background 0.2s, color 0.2s;
}
.download-banner .btn:hover {
  background-color: #4f46e5;
  color: #ffffff;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #9ca3af;
}
.footer a {
  color: #d1d5db;
  transition: color 0.2s;
}
.footer a:hover {
  color: #ffffff;
}

/* Mobile global scale */
@media (max-width: 640px) {
  html { font-size: 90%; }
}
