/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #7db1ff, #eef2f3);
  color: #055340;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-top: 50px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
h1, h2 {
  color: #000000;
  font-weight: 700;
  text-align: center;
}/* ========== TOP CONTACT BAR ========== */
.top-contact-bar {
  background: linear-gradient(to right, #1d1f21, #000000);
  color: #ddc7c7;
  font-size: 13px;
  padding: 8px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.top-contact-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  flex-wrap: nowrap;
  gap: 10px;
  flex-direction: row;
}
.top-contact-bar span {
  margin: 0 5px;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.top-contact-bar span:hover {
  color: #00ffae;
}
@media (max-width: 768px) {
  .top-contact-bar .container {
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 8px 10px;
  }
  .top-contact-bar span {
    font-size: 12px;
  }
}
/* ========== HEADER ========== */
header {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  padding: 18px 24px; /* increased for more spacing */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #00b894;
  position: fixed;
  top: 40px; /* below top-contact-bar */
  width: 100%;
  z-index: 1040;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
/* ========== LOGO ========== */
.logo {
  font-weight: 900;
  font-size: 26px; /* default desktop size */
  color: #00ffcb;
  font-family: 'Poppins', sans-serif;
  text-shadow: 1px 1px 6px rgba(0, 255, 204, 0.4);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.logo:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #00ffe1, 0 0 20px #00ffe1;
  transform: scale(1.05);
}

/* ========== BULK NOTE BANNER ========== */
.bulk-note-banner {
  position: fixed;
  top: 110px; /* default for desktop */
  width: 100%;
  background-color: #b9f7f4;
  padding: 8px 0;
  overflow: hidden;
  z-index: 1030;
  border-bottom: 1px solid #333;
}

/* Scrolling Text */
.scroll-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
  font-size: 16px;
  font-weight: 900;
  color: #6d0c0cff;
  text-shadow: 1px 1px 1px rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
  .logo {
    font-size: 28px;
  }

  .bulk-note-banner {
    top: 160px;
  }

  .scroll-text {
    font-size: 13px;
    padding-left: 100%;
  }
}


/* ========== NAVIGATION ========== */
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  margin-left: 20px;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  padding-bottom: 4px;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #00cec9;
  transition: width 0.3s ease-in-out;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}
nav a:hover {
  color: #0984e3;
}

/* ========== DROPDOWN ========== */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 999;
  flex-direction: column;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  padding: 10px 15px;
  display: block;
  color: #2c3e50;
  text-decoration: none;
}
.dropdown-content a:hover {
  background-color: #f0f0f0;
}

/* ========== MOBILE TOGGLE BUTTON ========== */
.menu-toggle {
  display: none;
  font-size: 34px;          /* Bigger lines */
  font-weight: 900;         /* Thicker */
  color: #ffffff;           /* White color */
  cursor: pointer;
  position: fixed;
  top: 54px;                /* Adjusted for header padding */
  right: 20px;
  z-index: 1060;
}

/* ========== MOBILE NAVIGATION ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  header {
    padding: 18px 20px 18px 16px; /* more left padding for logo spacing */
  }

  nav {
    position: absolute;
    top: 70px; /* below larger header */
    right: 20px;
    flex-direction: column;
    background: #001825;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: none;
    width: 250px;
    animation: slideDown 0.3s ease;
  }

  nav.active {
    display: flex;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dropdown-content {
    position: relative;
    background: #ffffff;
    box-shadow: none;
    border: 1px solid #ddd;
    margin-top: 5px;
    width: 100%;
  }

  .dropdown .dropdown-content {
    display: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }
}

/* ========== PUSH MAIN CONTENT DOWN ========== */
body {
  padding-top: 160px; /* 40 (top bar) + 70 (new header) + 50 (banner) */
  margin: 0;
  overflow-x: hidden;
}

/* ========== Pickup Form ========== */
.pickup-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 35px;
  background: #c3db9b;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.6s ease;
}

.pickup-form h1 {
  text-align: center;
  font-size: 30px;
  color: #0a3d62;
  margin-bottom: 10px;
}

.pickup-form p {
  text-align: center;
  font-size: 16px;
  color: #636e72;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form input,
form textarea,
form select {
  padding: 14px 15px;
  border: 1px solid #dcdde1;
  border-radius: 8px;
  font-size: 15px;
  transition: border 0.3s ease;
}
form input:focus,
form textarea:focus,
form select:focus {
  border-color: #00cec9;
  outline: none;
}

form button {
  padding: 14px;
  background: linear-gradient(to right, #00cec9, #0984e3);
  color: white;
  border: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
form button:hover {
  transform: scale(1.03);
  background: linear-gradient(to right, #01bcb1, #0a7bc1);
}

/* ========== Status Message ========== */
/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem 1rem;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 300px;
  padding: 1rem;
}

.footer-column h3 {
  font-size: 1.1rem;
  border-bottom: 3px solid #e74c3c;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #00cec9;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #aaa;
}

#statusMsg {
  text-align: center;
  margin-top: 15px;
  color: green;
  font-size: 15px;
}

/* ========== Form Animation ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
