
/* SECTION */
.pickup-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.pickup-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

/* LAYOUT */
.pickup-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

/* CARD */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* FORM */
.form-card h3 {
  margin-bottom: 15px;
}

label {
  font-size: 14px;
  margin-top: 12px;
  display: block;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

textarea {
  resize: none;
  height: 80px;
}

.row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.row div {
  flex: 1;
}

/* BUTTON */
.btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
}

/* RIGHT SIDE */
.right-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whatsapp-card {
  border: 1px solid #22c55e;
}

.whatsapp-btn {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: #b5eec9;
  border: none;
  border-radius: 6px;
  color: #166534;
  cursor: not-allowed;
}

.info-card ul {
  list-style: none;
  margin-top: 10px;
}

.info-card li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pickup-container {
    grid-template-columns: 1fr;
  }
}

.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}

.success-overlay.active {
  visibility: visible;
  opacity: 1;
}

.success-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  width: 90%;
  max-width: 380px;
  animation: scaleUp 0.4s ease;
}

.checkmark {
  width: 70px;
  height: 70px;
  background: #22c55e;
  color: #fff;
  font-size: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.success-box h3 {
  margin-bottom: 8px;
  color: #111;
}

.success-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

.success-box button {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

@keyframes scaleUp {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== Toast Alert ===== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111827; /* dark */
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 9999;
}

/* show animation */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* success state */
.toast.success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* error state */
.toast.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* mobile responsive */
@media (max-width: 600px) {
  .toast {
    left: 50%;
    right: auto;
    bottom: 20px;
    transform: translateX(-50%) translateY(20px);
  }

  .toast.show {
    transform: translateX(-50%) translateY(0);
  }
}
