/* ===== Color Helpers ===== */
:root {
  --litvox-blue: #0d6efd;
  --litvox-blue-light: #e9f2ff;
}

/* General tweaks */
body {
  scroll-behavior: smooth;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

section {
  overflow-x: hidden;
}

/* Navbar */
.navbar-dark.bg-primary {
  background-color: var(--litvox-blue) !important;
}
.nav-link.active,
.nav-link:hover {
  color: #fff !important;
}

/* Hero */
#hero .carousel-item {
  background-size: cover;
  background-position: center;
}
#hero .overlay {
  /* background: rgba(13, 110, 253, 0.55); */
  height: 100%;
  width: 100%;
}

/* Quote carousel dots */
#quoteCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--litvox-blue);
}

/* Gradient section */
.bg-gradient-blue {
  background: linear-gradient(135deg, var(--litvox-blue) 0%, #0069d9 100%);
}

/* Cards hover */
.hover-up {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-up:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

/* Testimonials */
#testimonials .carousel-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

/* Carousel dots white variant */
#testiCarousel .carousel-indicators [data-bs-target] {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Footer */
footer {
  font-size: 0.875rem;
}

/* Media queries */
@media (max-width: 767.98px) {
  #hero .overlay h1 {
    font-size: 1.75rem;
  }
}

/* Smooth fade-in on scroll (simple) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.show {
  opacity: 1;
  transform: none;
}
/* --------------------------------- */
/* Modal overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* hidden initially */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.modal-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease;
  position: relative;
}

/* Close button */
.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

/* Tier buttons */
.tiers {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.tier-btn {
  border: 2px solid #007bff;
  background: white;
  color: #007bff;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}

.tier-btn.active {
  background: #007bff;
  color: white;
}

/* Custom input */
.custom-input {
  display: none;
  margin-bottom: 20px;
}

.custom-input input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* Payment buttons */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paypal-btn {
  background: #ffc439;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.card-btn {
  background: #007bff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .tiers {
    flex-direction: column;
  }
}
/* ----------------------------- */

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal Box */
.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 95%;
  max-width: 450px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Toggle Buttons */
.toggle-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.toggle-btn {
  padding: 8px 16px;
  border: 1px solid #007bff;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.toggle-btn.active {
  background: #007bff;
  color: #fff;
}

/* Amount */
.amount {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

/* Benefits List */
.benefits {
  text-align: left;
  padding-left: 15px;
  margin-bottom: 20px;
}

.benefits li {
  margin: 6px 0;
  font-size: 14px;
}

/* Payment Buttons */
.payment-options {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.pay-btn {
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.pay-btn.paypal {
  background: #ffc439;
}

.pay-btn.card {
  background: #007bff;
  color: #fff;
}

.pay-btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 576px) {
  .modal-content {
    padding: 20px;
  }
  .benefits li {
    font-size: 13px;
  }
}
/* ------------------------------------- */

