/* Package Booking Modal */
.pkg-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pkg-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.pkg-modal {
  background: #111118;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pkg-modal-overlay.active .pkg-modal {
  transform: translateY(0) scale(1);
}

.pkg-modal-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pkg-modal-header h3 {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 1.4rem;
}

.pkg-modal-header p {
  margin: 0;
  color: #d4af37;
  font-weight: 600;
  font-size: 1.1rem;
}

.btn-pkg-close {
  background: none;
  border: none;
  color: #fff;
  opacity: 0.5;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.2s;
}

.btn-pkg-close:hover {
  opacity: 1;
}

.pkg-modal-body {
  padding: 24px;
}

.pkg-form-group {
  margin-bottom: 16px;
}

.pkg-form-group label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.pkg-form-group input, .pkg-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.pkg-form-group input:focus, .pkg-form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.pkg-modal-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.pkg-breakdown {
  margin-bottom: 20px;
  background: rgba(212,175,55,0.05);
  padding: 16px;
  border-radius: 8px;
  border: 1px dashed rgba(212,175,55,0.2);
}

.pkg-breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.pkg-breakdown-row.total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.pkg-breakdown-row.advance {
  color: #4ade80;
  font-weight: 700;
}

.btn-pkg-submit {
  width: 100%;
  background: #d4af37;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.btn-pkg-submit:hover {
  background: #f1c40f;
  transform: translateY(-2px);
}

.btn-pkg-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
