/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f5f5f5;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #ccc;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  text-align: center;
}
.logo h1 a {
  color: #3b0b75;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}
.logo p {
  font-size: 9px;
  letter-spacing: 2px;
  color: #3b0b75;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-links li a:hover {
  color: #3b0b75;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  color: #3b0b75;
  font-size: 28px;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  margin-top: 120px;
  text-align: center;
  padding: 80px 20px;
}
.hero h2 {
  font-size: 32px;
  color: #3b0b75;
}
.hero p {
  margin-top: 10px;
  font-size: 18px;
  color: #444;
}
.last-line {
  margin-top: 0px;
  text-align: center;
  padding: 0px 0px;
}   
.last-line strong {
  margin-top: 10px;
  font-size: 18px;
  color: #444;
}
/* FOOTER */
.footer {
  background: #111;
  color: white;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  width: 30%;
  margin-bottom: 20px;
}

.footer-section h3 {
  border-bottom: 2px solid #3b0b75;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #222;
  color: #aaa;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.95);
    padding: 15px 0;
    position: absolute;
    top: 60px;
    left: 0;
  }
  .nav-links.active {
    display: flex;
  }
  .footer-section {
    width: 100%;
    text-align: center;
  }
}
/* Global dark website background */
body {
    background: #121834 !important;
    color: #fff !important;
}
/* Push page down to avoid navbar overlap */
body.html, body.payment-page, body.pickup-page, body.bill-page, body.index-page, body.services-page {
    margin-top: 120px; /* adjust if needed */
}
/* Neon container for all pages */
.neon-container {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(155,47,240,0.15);
    border-radius: 14px;
    padding: 30px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 10px 40px rgba(155,47,240,0.10);
}
.pickup-page .small-muted {
    color: #8b93a9 !important;   /* same muted color */
    font-size: 14px !important;
    margin-top: -6px !important;
    display: block;
}
/* Fix dropdown popup background */
select.neon option {
  background-color: #0a0f1f;   /* dark background */
  color: #ffffff;              /* white text */
}

/* When dropdown is focused */
select.neon:focus option {
  background-color: #0a0f1f;
  color: #ffffff;
}

/* Mobile fix: stack columns */
@media (max-width: 768px) {
    .pickup-details-container {
        display: block !important;
    }

    .left-form,
    .right-form {
        width: 100% !important;
        margin-bottom: 20px;
    }
}
.btn-ghost {
  text-decoration: none;
}
/* Mobile Responsive Fix — SAFE VERSION */
@media (max-width: 480px) {

  /* Only dropdowns and text inputs */
  select,
  input[type="text"],
  input[type="number"],
  input[type="tel"],
  input[type="email"] {
    width: 100%;
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  /* Only form buttons */
  button.view-btn,
  #view-bill-btn,
  .primary-btn {
    width: 100%;
    padding: 14px 18px !important;
    font-size: 16px !important;
  }

  /* Fix spacing */
  .form-group {
    margin-bottom: 18px;
  }
}
.loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

/* <!-- ANIMATED LOACDER --> */
.loader {
  width: 45px;
  height: 45px;
  border: 4px solid rgba(255,255,255,0.15);
  border-top-color: var(--neon);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* FULL PAGE LOADER */
#full-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #0d0f1f, #06070f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: white;
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 0.3s ease-out;
}

/* 3D Neon Orb */
.orb {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b2ef7, #a855f7);
  box-shadow: 0 0 40px #8b3be6, inset 0 0 30px #5f1df1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 2.2s ease-in-out infinite;
}

.inner-orb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.25);
  animation: pulse 1.8s infinite ease-in-out;
}

.loader-text {
  margin-top: 20px;
  font-size: 16px;
  opacity: 0.9;
  color: #c3b7ff;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
